我需要选择所有a
标签,但它们不应该img
在第一个孩子中有标签。
我为它编写了脚本,但省略了选择器。
$(document).ready(function() {
$().mouseenter(function(i) {
$(this).css("border","2px solid orange");
}).mouseleave(function(i){
$(this).css("border","none");
});
});
和 HTML:
<a href=""></a><!--need to select-->
<a href=""><!--don't need to select-->
<img src"">
</a>
<a href=""></a><!--need to select-->