我想知道 jsoup 是否支持这个 css 选择器:
$('select[name=bankType] option:not([value=])')
它适用于jQuery 1.8,但不适用于jsoup 1.7.2。我想知道是否有任何等效的语法来执行此功能。
我想知道 jsoup 是否支持这个 css 选择器:
$('select[name=bankType] option:not([value=])')
它适用于jQuery 1.8,但不适用于jsoup 1.7.2。我想知道是否有任何等效的语法来执行此功能。
: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.