我有一个xpath,我想找到附加了onmouseover事件的所有子元素(甚至是嵌套的子元素)。我对Javascript和JQuery很新颖。有人可以帮帮我吗?
例如在link上,我想获得onmouseover
的所有子元素作为第一个元素crAvgStars
的元素。
答案 0 :(得分:1)
$("yourElementSelector").mouseover(function(){
var children = $(this).children();
// OR
$(this).children().each(function(){
// DO something with each one...
});
});