其他分享
首页 > 其他分享> > jq on绑定事件

jq on绑定事件

作者:互联网

以前用的是bind(); 后来更新后用的on

(on() 方法是 bind()、live() 和 delegate() 方法的新的替代品)

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <div class="box1">hhhhhhhh</div>
    <div class="box2">hhhhhhhh</div>
<script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.js"></script> <script> // bind(); 旧的绑定事件的方法 $('.box1').on('click mouseover mouseout',function(ev){ // var e = ev||event; console.log(233); }); // 添加不同事件,执行相同事件处理程序 $('.box2').on({ click: function(){ console.log('click'); }, mouseover : function(){ console.log('mouseover'); }, mouseout : function(){ console.log('mouseout'); } });
     // 添加不同时间的不同执行程序
</script>

</body>
</html>

 

标签:function,console,log,bind,绑定,jq,事件,mouseout,click
来源: https://www.cnblogs.com/sandraryan/p/11527220.html