0

我想知道 jsoup 是否支持这个 css 选择器:

$('select[name=bankType] option:not([value=])')

它适用于jQuery 1.8,但不适用于jsoup 1.7.2。我想知道是否有任何等效的语法来执行此功能。

4

1 回答 1

0

:not(selector) elements that do not match the selector.

Check out the documentation about jsoup cssSelector

Example : div:not(.logo) finds all divs that do not have the "logo" class.

于 2013-04-10T06:35:07.423 回答