如何从此行返回的选定元素中排除具有特定attr值的元素
testMap = $.grep(myData.products, function(element, index) {
return $.inArray('green', element.color) > -1;
});
我需要“不能正常工作”的内容
mDocument.select("input[src*=Btn],img[src*=Btn]")
谢谢
答案 0 :(得分:0)
试试这个
mDocument.select("input[src*=Btn],img[src*=Btn]").not("img[src*=notThisOne]")