jquery Javascript修改元素事件函数参数

oxosxuxt  于 2022-12-03  发布在  jQuery
关注(0)|答案(3)|浏览(144)

我想知道是否有一种更优雅的方法来修改onclick事件的参数。我有一个表,我动态地添加/删除其中的元素,并重新索引行。每一行都有一个delete链接,其中包含行的索引(和一个duplicate链接),需要更新其参数以匹配修改后的行id。
目前我的程式码看起来像(简化)

<a onclick="delRow(1)">delete</a>

和JavaScript:...

html = element.innerHTML;

html = html.replace(/dupRow(\\d+)/g, "dupRow(" + newIndex + ")");
html = html.replace(/delRow(\\d+)/g, "delRow(" + newIndex + ")");

element.innerHTML = html

我希望它能成为

if (element.onclick != null) {
    element.onclick.params[0] = newIndex;
}

有这样的方法吗?如果有帮助的话,我也有jQuery。

更新:

所以感谢@rich.okelly的光荣帮助我解决了我的问题

<script>
...

var newRow = '\
        <tr>\
        <td class="index" col="0">0</td>\
        <td>this is content...</td>\
        <td><a href="#" row-delete="true">Del</a></td>\
        </tr>';

// re-index table indices in a non-efficient manner
function reIndexTable() {
    $("#rpc-builder-table").find('.index').each(function (i) {
        $(this).html(i)
    })
}

// add row
function addRow() {
    for (i = 0; i < $('#addRowCount').attr("value"); i++) {
        $("#rpc-builder-table").append(newRow);
    }
    reIndexTable();
}

$(document).ready(function () {

    // add row button
    $('#addRowsButton').on('click', function () {
        addRow();
    });

    // delete row
    $('#rpc-builder-table').on('click', 'td a[row-delete="true"]', function () {
        $(this).closest('tr').remove();
        reIndexTable();
    });

    ...
}
</script>

...

<div>
    <label>Rows to add: </label>
    <input id="addRowCount" value="1" size="2" />
    <button id="addRowsButton">Add Row(s)</button>
</div> 

<div><table id="rpc-builder-table"><tbody>
    <tr>
        <th>Idx </th>
        <th>Some content (1)</td>
    </tr>
</tbody></table></div>

...

我使用了.on()函数而不是建议的.delegate()函数,因为它已经被弃用了。解决方案运行良好-希望它能对某人有所帮助:)

qv7cva1a

qv7cva1a1#

如果将html更改为类似以下内容的内容:

<tr>
  <td>
    <a href="#" data-delete="true">delete</a>
  </td>
</tr>

那么你的javascript可以是这样的:

$('td a[data-delete="true"]').on('click', function() {
  $(this).closest('tr').remove();
});

更新

如果数据列是动态加入至预先存在的数据表(数据表可与任何父项目互换),您可以使用委派方法,如下所示:

$('table').delegate('td a[data-delete="true"]', 'click', function() {
  $(this).closest('tr').remove();
});
ncgqoxb0

ncgqoxb02#

使用事件委托附加事件处理程序,而不是内联处理程序

$("#tableID").delegate("a", "click", delRow);

$("#tableID").on("click", "a", delRow); //jQuery 1.7

在处理程序内部,

var row = $(this).closest("tr").index(); //Get the index of the parent row

内联处理程序被解析为函数:

function onclick() {
    delRow(1);
}

因此很难更改它们。您的示例使用新参数重写了整行,这是一种不好的做法。

w46czmvw

w46czmvw3#

最脑残的解决方案是去掉参数,设置一个变量。

var row_to_dup = 42;

$("#a_row_dupper").bind('click', function (){
    dupItem(row_to_dup);
});

//changing the row to dup
row_to_dup = 17;

相关问题