码迷,mamicode.com
首页 > 其他好文 > 详细

移除事件的绑定

时间:2016-05-16 12:33:11      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

HTML:
<!DOCTYPE >

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<style type="text/css">
* {
margin: 0px;
padding: 0;
font-family: "微软雅黑", "arial", " sans-serif";
font-size: 16px;
}

body {
margin: 20px;
}

#content {
display: none;
border: 1px solid #060;
width: 530px;
height: 130px;

}

button {
margin: 10px;
background: silver;
color: #006600;
border-radius: 5px;
}
</style>
<script type="text/javascript" src="js/jquery-2.2.2.min.js">
</script>

<script type="text/javascript">
$(function() {
$("#btn1").bind("click", function() {
$("#content").show(3000);
});
$("#btn2").bind("click", function() {
if ($("#content").is(":visible")) {
$("#content").hide(1000, showColor);
} else {
$("#content").show(3000, showColor);
$("#content").css("background-color", "yellow");
}
});

function showColor() {
$("#content").css("background-color", "green");
}

$("#btn3").click(
function(){
$("#btn1").unbind("click");
}
);

$("#btn4").click(
function(){
$("#btn2").unbind("click");
}
)

});
</script>
</head>

<body>
<button id="btn1">显示消息</button>
<button id="btn2">特效动画</button>
<br />
<button id="btn3">移除按钮显示消息的事件</button>
<button id="btn4">移除按钮特效动画的事件</button>
<div id="content">
<pre> 设想在处理事件时,我们需要在一个事件函数中考察一个或者
多个事件属性。这是一个简单的技术,可以使事件处理函数和作为
参数传入的事件对象协同工作,或者从window.event 属性中读
取信息。而且,这个技术不必处理不同的浏览器版本之间的细微
差别。</pre>
</div>

</body>

</html>
result:

技术分享

移除事件的绑定

标签:

原文地址:http://www.cnblogs.com/theWayToAce/p/5497452.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!