Jsoup CSS选择具有特定值的属性的排除元素

时间:2015-08-14 06:38:39

标签: css-selectors jsoup

Jsoup test drive上的html字符串上使用Jsoup CSS Selector,我需要提取所有没有type =" image"的输入元素。属性。 我尝试了几个字符串无济于事。输入:不是(.image),输入:不是(type = image),在阅读了一些例子here之后很少有其他人,请帮助, 谢谢 例如:

<input type="what_ever" ...>
<input type="image" ...>

我想得到所有

<input type="what_ever" .. >

仅限元素。

1 个答案:

答案 0 :(得分:0)

使用此功能 - input[type=what_ever]

修改 -
由于OP的评论,它应该是input[type!=image]try.jsoup.org

尝试了以下输入
<input type="what_ever" ...>
<input type="image" ...>
<input type="something" ...>
<input type="image" ...>

,结果是

<input type="what_ever" ...>
<input type="something" ...>