使用onmouseover查找所有子元素

时间:2014-01-07 12:59:06

标签: javascript onmouseover

我有一个xpath,我想找到附加了onmouseover事件的所有子元素(甚至是嵌套的子元素)。我对Javascript和JQuery很新颖。有人可以帮帮我吗?

例如在link上,我想获得onmouseover的所有子元素作为第一个元素crAvgStars的元素。

1 个答案:

答案 0 :(得分:1)

$("yourElementSelector").mouseover(function(){
    var children = $(this).children();
    // OR
    $(this).children().each(function(){
         // DO something with each one...
    });
});

http://api.jquery.com/children/