Is this a valid syntax:

$("span").parents("li[data='UM'], li[data='Me']")

I want to traverse to parent of span and see if that parent is a li with value of data attribute as "UM" OR li with value of data attribute as "Me". Basically looking for OR operator in parents.

有帮助吗?

解决方案 2

use .closest() instead:

 $("span").closest("li[data='UM'], li[data='Me']")

其他提示

Yes using closest() is definitely the right procedure.

$("span").closest("li[data='UM'], li[data='Me']");

http://api.jquery.com/closest/

if ($("span").closest("li").filter("li[data='UM'], li[data='Me']").length) { // there is... }
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top