$(document).on("click","a.cssPauseAll,[historyID]",function () { alert($(this)); });
如何使用AND运算符使用多个选择器?
这意味着,具有a.cssPauseAll类和historyID属性的元素?
$(document).on("click","a.cssPauseAll[historyID]",function () {
historyID不是您可以使用data- *属性的有效属性:
$(document).on("click","a.cssPauseAll[data-historyid]",function () {