jquery中怎么取得发生事件的元素?
比如现在页面上有5张图片,我鼠标移动到一个图片上,用jquery怎么知道我现在移动到的是哪张?...
比如现在页面上有5张图片,我鼠标移动到一个图片上,用jquery怎么知道我现在移动到的是哪张?
展开
1个回答
展开全部
把事件绑定到元素上就行了
$("p").bind("mouseover",function(event){alert("ok");});
示例:
<html>
<body>
<div id="imageList">
<img src="1.jpg" class=""/>
<img src="2.jpg" class=""/>
<img src="3.jpg" class=""/>
<img src="4.jpg" class=""/>
<img src="5.jpg" class=""/>
</div>
</body>
</html>
<script type="text/javascript" src="jquery.js">
<script type="text/javascript">
$("#imageList>img").bind("mouseover",function(event){//你的代码});
</script>
$("p").bind("mouseover",function(event){alert("ok");});
示例:
<html>
<body>
<div id="imageList">
<img src="1.jpg" class=""/>
<img src="2.jpg" class=""/>
<img src="3.jpg" class=""/>
<img src="4.jpg" class=""/>
<img src="5.jpg" class=""/>
</div>
</body>
</html>
<script type="text/javascript" src="jquery.js">
<script type="text/javascript">
$("#imageList>img").bind("mouseover",function(event){//你的代码});
</script>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询