<script type="text/javascript">
$(document).ready(function () {
$(".btyt1>a").hover(function(event) {
alert("ok");
});
$(".btyt2>a").hover(function(event) {
alert("ok2");
});
});
</script>
你现在运行结果是弹OK2?
有什么JS的错误吗?
看看html结构。
尝试在方法中,停止事件冒泡。
如
$(".btyt2>a").hover(function(event) {
alert("ok2");
e.preventDefault();
e.stopPropagation();
});
说明有的 a 既有 class btyt2 也有 btyt1, btyt2的hover 就把 btyt1的覆盖了