所以我想检查是否有任何li元素的属性为“data-foo”且其值为“bar”。
这会有用吗? :
if ($('li[data-foo=bar]'))
{
//exists
}
else
{
//does not exist
}
由于
答案 0 :(得分:11)
获取length
选择器返回的greater
元素,如果它是zero
,那么atleast one
则表示您在选择器中具有if ($('li[data-foo=bar]').length > 0)
{
//exists
}
else
{
//does not exist
}
元素并提供了条件。
{{1}}