我的网页包含一些" DIV"其类允许使用ajax调用包含tablesorter的其他页面。
$('body').find('.widget').each(function()
{ $.ajax ({ ... ]);
如果我只是通过调用地址进行测试,那么tablesorter效果很好。在通过ajax调用之后它不再起作用了。
我曾试过:
$("#contain-panel").find("#tablesorter-demo").tablesorter();
$("#contain-panel").live("#tablesorter-demo").tablesorter();
$(" #contain-panel #tablesorter-demo").tablesorter();
$(" body #tablesorter-demo").tablesorter();
我曾经遇到类似的问题点击,更改......我用
解决了这个问题$('#contain-panel .tablesorter').on('dblclick', 'td', function() { ... });
我开始使用jquery并且我无法控制它。请帮忙! :`(