Вопрос

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