以下代码将针对类= a.cssPauseAll
的元素的click事件触发警报OR
属性= historyID
的元素
$(document).on("click","a.cssPauseAll,[historyID]", function () {
alert($(this));
});
如何使用
AND
运算符使用多个选择器?这意味着具有
a.cssPauseAll
类AND
historyID
属性的元素? 最佳答案
只需从选择器中删除,
即可:
$(document).on("click","a.cssPauseAll[historyID]", function () {
historyID
不是有效的属性,您可以改为使用data-*
属性:$(document).on("click","a.cssPauseAll[data-historyid]", function () {
关于jQuery多个选择器, "AND"运算符,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12810479/