Jsoup排除了具有某个attr的元素

时间:2015-10-05 23:57:21

标签: jsoup

如何从此行返回的选定元素中排除具有特定attr值的元素

 testMap = $.grep(myData.products, function(element, index) {
      return $.inArray('green', element.color) > -1;
 }); 

我需要“不能正常工作”的内容

mDocument.select("input[src*=Btn],img[src*=Btn]")

谢谢

1 个答案:

答案 0 :(得分:0)

试试这个

mDocument.select("input[src*=Btn],img[src*=Btn]").not("img[src*=notThisOne]")