`

移除事件

阅读更多
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>4-6-4</title>
<style type="text/css">
*{margin:0;padding:0;}	
body { font-size: 13px; line-height: 130%; padding: 60px; }
p {width:200px;background:#888;color:white;height:16px;}
</style>
<script src="../../scripts/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
	$(function(){
	   $('#btn').one("click", function(){
					 $('#test').append("<p>我的绑定函数1</p>");
			  }).one("click", function(){
					 $('#test').append("<p>我的绑定函数2</p>");
			  }).one("click", function(){
				  	 $('#test').append("<p>我的绑定函数3</p>");
		      });
	})
</script>
</head>
<body>
<button id="btn">点击我</button>
<div id="test"></div>
</body>
</html>
事件处理函数只会被执行一次
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics