forked from pandoraui/jquery-chm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
die.html
62 lines (61 loc) · 3.13 KB
/
die.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>die(type,[fn]) | jQuery API 中文手册</title>
<meta name="author" content="jQuery 中文手册 - hemin.cn/jq/">
<meta name="description" content="jQuery中文手册(在线版),作者:hemin,在线手册:hemin.cn/jq/,下载:hemin.cn/jq/downloads/">
<link type="text/css" rel="stylesheet" href="style/style.css" tppabs="http://hemin.cn/jq/style/style.css" />
<script type="text/javascript" src="js/jquery.min.js" tppabs="http://hemin.cn/jq/js/jquery.min.js"></script>
<script type="text/javascript" src="js/js.js" tppabs="http://hemin.cn/jq/js/js.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-15318881-10', 'pandoraui.github.io');
ga('send', 'pageview');
</script>
</head>
<body id="split">
<div id="content" class="a2">
<div rel="die">
<h2><span>返回值:jQuery</span>die(type, <em class="optional">[fn]</em>)</h2>
<h3>概述</h3>
<div class="desc">
<p>从元素中删除先前用.live()绑定的所有事件.(此方法与live正好完全相反。)</p>
<div class="longdesc">
<p>如果不带参数,则所有绑定的live事件都会被移除。</p>
<p>你可以解除用live注册的自定义事件。</p>
<p>如果提供了type参数,那么会移除对应的live事件。</p>
<p>如果也指定了第二个参数function,则只移出指定的事件处理函数。</p>
<p class="optional"> <strong>从 jQuery 1.7 开始</strong>,不再建议使用 .die() (以及它的互补方法 .live())。请使用 <a href="off.html" tppabs="http://hemin.cn/jq/off.html"> .off()</a> 来代替,用于移除通过 <a href="on.html" tppabs="http://hemin.cn/jq/on.html"> .on()</a> 绑定的事件处理。 </p>
<p> <strong>注意:</strong> 为了保证 .die() 能正确工作,所使用的选择器必须与初始化 .live() 时所使用的选择器保持一致。 </p>
</div>
</div>
<h3>参数</h3>
<div class="parameter">
<h4><strong>type[,fn]<em> </em></strong><span>String,Function</span><em>V1.3</em></h4>
<p><strong>type:</strong>要移除的一个或多个事件处理程序。由空格分隔多个事件值。必须是有效的事件。</p>
<p><strong>fn:</strong>要移除的函数。。</p>
<h4><strong>type<em> </em></strong><span>String</span><em>V1.4.3</em></h4>
<p>要移除的一个或多个事件处理程序。
由空格分隔多个事件值。必须是有效的事件。</p>
</div>
<div class="example">
<h3>示例</h3>
<span id="f_ad2"></span>
<h4>描述:</h4>
<p>给按钮解除click事件</p>
<h5>jQuery 代码:</h5>
<pre><code>function aClick() {
$("div").show().fadeOut("slow");
}
$("#unbind").click(function () {
$("#theone").die("click", aClick)
});</code></pre>
</div>
</div>
</div>
</body>
</html>