目录一、Jquery的事件处理1、页面载入事件2、事件绑定(bind)3、反绑定事件(unbind)4、一次性事件绑定(one)5、模拟鼠标悬停(hover)总结一、jQuery的事
$(document).ready() --- onload
bind(type,[data],fn)
type
:表示事件类型(click
、mouseover
、mouseout...
)
[data]
:可选参数,表示传递给事件对象的额外数据
fn
:是一个函数(事件处理函数),当事件发生时执行的程序
为每一个匹配元素的特定事件(像click)绑定一个事件处理器函数
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta Http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="../jq/jquery.js"></script>
</head>
<body>
<button id="btn">确定</button>
<script>
$(function(){
$('#btn').bind('click',function(){//可以给按钮绑定其他事件
alert('事件绑定')
})
})
</script>
</body>
</html>
显示效果:点击确定按钮之后,出现弹窗
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="../jq/jquery.js"></script>
</head>
<body>
<img src="../img/1.jpg" alt="" width="150" height="200">
<script>
$(function(){
//通过鼠标的悬停、离开事件来改变img的图像
$('img').bind('mouseover',function(){
$(this).attr({src:'../img/2.jpg'})//this表示的是img这个元素
})
$('img').bind('mouseout',function(){
$(this).attr({src:'../img/1.jpg'})
})
})
</script>
</body>
</html>
显示效果:当鼠标悬停在图片上时,显示的是一个图片。当鼠标离开这个图片时,显示的是另一张图片。反复交替,没有限制。
unbind([type],[data])
:删除绑定的事件
(1)不带参数:删除元素上绑定的所有事件
(2)带参数:[type]表示事件类型
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="../jq/jquery.js"></script>
</head>
<body>
<img src="../img/1.jpg" alt="" width="150" height="200">
<script>
$(function(){
//通过鼠标的悬停、离开事件来改变img的图像
$('img').bind('mouseover',function(){
$(this).attr({src:'../img/2.jpg'})//this表示的是img这个元素
})
$('img').bind('mouseout',function(){
$(this).attr({src:'../img/1.jpg'})
})
$('img').unbind('mouseout')//解绑
})
</script>
</body>
</html>
显示效果:鼠标离开图片之后,图片不会变成1.jpg
绑定的事件只能执行一次
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="../jq/jquery.js"></script>
</head>
<body>
<img src="../img/1.jpg" alt="" width="150" height="200">
<script>
$(function(){
//通过鼠标的悬停、离开事件来改变img的图像
$('img').bind('mouseover',function(){
$(this).attr({src:'../img/2.jpg'})//this表示的是img这个元素
})
//一次性事件绑定
$('img').one('mouseout',function(){
$(this).attr({src:'../img/1.jpg'})
})
})
</script>
</body>
</html>
显示效果:鼠标离开图片后,图片会变成1.jpg,但是这种变化只会执行一次。第二次离开图片时,就不会变成1.jpg。
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <script src="../jq/jquery.js"></script></head><body> <div style="width: 200px; height: 200px; background-color: red;"></div> <script> $(function(){ $('div').hover(function(){ $(this).CSS('backgroundColor','pink') }) }) </script></body></html><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="../jq/jquery.js"></script>
</head>
<body>
<div style="width: 200px; height: 200px; background-color: red;"></div>
<script>
$(function(){
$('div').hover(function(){
$(this).css('backgroundColor','pink')
})
})
</script>
</body>
</html>
显示效果:鼠标悬停在图片上时,图片由红色变为粉色。离开图片时并不会变回原来的红色。
本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注编程网的更多内容!
--结束END--
本文标题: jQuery的事件处理你知道多少
本文链接: https://lsjlt.com/news/140278.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-12
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0