我想删除onclick
特定tr
..下的所有 s
例如,
前:
<tr id="current">
<td onclick="foo();"></td>
<td onclick="foo();"><div onclick="abc();"></div></td>
<td onclick="foo();"></td>
<td onclick="foo();"></td>
</tr>
后:
<tr id="current">
<td></td>
<td><div></div></td>
<td></td>
<td></td>
</tr>
我想我必须做类似的事情:
$("#current td").each(function() {
$(this).removeAttr('onclick');
});
$("#current td div").each(function() {
$(this).removeAttr('onclick');
});
但也许还有另一种选择。