Blogger Information
Blog 32
fans 1
comment 0
visits 29136
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
on()和off()方法的使用
艾克的博客
Original
1377 people have browsed it


<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <script src="jquery-3.2.1.min.js"></script>
   <title>用css方式来获取页面元素</title>
   <style>
       div {
           width: 200px;
           height: 200px;
           background-color: #999999;
       }
   </style>
</head>
<body>
<div></div>


<script>
   //off()函数用于移除元素上绑定的一个或多个事件的事件处理函数
   //on()函数用于为指定元素的一个或多个事件绑定事件处理函数
$('div').on('click',function () { //给div添加点击事件
$(this).css('background','skyblue')
   })
   $('div').off('click')//删除div的点击事件
</script>
</body>
</html>

   //off()函数用于移除元素上绑定的一个或多个事件的事件处理函数
   //on()函数用于为指定元素的一个或多个事件绑定事件处理函数

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post