jquery的mouseleave()方法被触发2次
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01//EN""http://www.w3.org/TR/html4/strict.dtd"><...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
<title>Untitled Document</title>
<style>
div{width:200px;height:200px;background:blue;}
</style>
<script type="text/javascript" src="lib/jquery/jquery-1.4.2.js"></script>
<script>
$(document).ready(function(){
$("div").mouseleave(function(){
alert("1"); //有弹出框时mouseleave会被触发2次
$("p").html($("p").html()+"1");//记录被触发了多少次
});
});
</script>
</head>
<body>
<div></div>
<p></p>
</body>
</html>
为什么当有弹出框时mouseleave会被触发2次,而没弹出框时只会触发1次 展开
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
<title>Untitled Document</title>
<style>
div{width:200px;height:200px;background:blue;}
</style>
<script type="text/javascript" src="lib/jquery/jquery-1.4.2.js"></script>
<script>
$(document).ready(function(){
$("div").mouseleave(function(){
alert("1"); //有弹出框时mouseleave会被触发2次
$("p").html($("p").html()+"1");//记录被触发了多少次
});
});
</script>
</head>
<body>
<div></div>
<p></p>
</body>
</html>
为什么当有弹出框时mouseleave会被触发2次,而没弹出框时只会触发1次 展开
2个回答
2013-07-03
展开全部
点击弹出框的时候又一次离开div
追问
当鼠标从div内移到div外才会触发mouseleave,也就移到div外才弹出那个框,那鼠标已经在div外面了,怎么又会触发mouseleave?
追答
你试试使用debug工具,断点来调试!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询