所以我有:
$("#tblId").tablesorter({
widgets: ['zebra'],
widgetOptions: {
zebra: ["zebraStripe", "zebraBase"]
}
}).bind("sortStart", function () {
alert('sortStart');
});
并且斑马条纹适用于 Chrome 和 IE 8(我正在测试的其他浏览器)。但是 sortStart 函数只在 IE 8 中调用,而不是 Chrome。它也只在 IE 8 中排序,而不是在 Chrome 中,这是真正的问题。任何人都可以添加任何想法吗?TIA。
编辑:我修复了不匹配的引号。当我简化选择器时:
$('#tblChildViolationList_' + entityid + '[data-violationtype="' + violationType + '"]')
至:
$("#tblId")
我没有注意报价。