gpt4 book ai didi

javascript - 对列进行排序后触发标题上的点击事件

转载 作者:行者123 更新时间:2023-11-28 20:09:46 25 4
gpt4 key购买 nike

我正在我的 table 上使用表排序插件//http://tablesorter.com/docs/index.html

我想在单击标题时触发一个事件,在对列进行排序后,我尝试如下

$("tableId").tablesorter();

$("thead th").click(function () {
alert("hi");
});

但是想要发生的是我的事件比插件事件先触发,我希望我的事件在插件事件之后触发...

任何想法请......................

最佳答案

使用jQuery 1.3+:

$( "thead th" ).live( "click", function() {
alert( "hi" );
});

使用jQuery 1.4.3+:

$( document ).delegate( "thead th", "click", function() {
alert( "hi" );
});

使用jQuery 1.7+:

$( document ).on( "click", "thead th", function() {
alert( "hi" );
});

更多信息( http://api.jquery.com/live/ )

关于javascript - 对列进行排序后触发标题上的点击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20092160/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com