我有使用AJAXtable.tablesorter
频繁更改的元素。我想在“点击”上添加事件处理程序,只要我点击它的标题,它就会委托给元素。我是新来使用 jQuery 的。因此,我尝试将以下 jQuery 脚本放入 Chrome Web 控制台。table.tablesorter th.class
jQuery脚本:
$('#table-content').on(
'click',
'.tablesorter thead tr th',
function() {alert(); }
);
我的 HTML:
<div id="table-content">
<table class="tablesorter">
<thead>
<tr>
<th class="header">No.</th>
<th class="header">Name</th>
<th class="header">Phone</th>
</tr>
</thead>
</table>
</div>
结果:当我单击表格上的标题时,没有弹出警报窗口。
当我单击表格的标题时,我必须更改什么以显示警报对话框?