forked from pandoraui/jquery-chm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.html
78 lines (73 loc) · 3.09 KB
/
data.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>data([key],[value]) | 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="data">
<h2><span>返回值:jQuery</span>data([key],[value])</h2>
<h3>概述</h3>
<div class="desc">
<p>在元素上存放数据,返回jQuery对象。</p>
<div class="longdesc">
<p>如果jQuery集合指向多个元素,那将在所有元素上设置对应数据。
这个函数不用建立一个新的expando,就能在一个元素上存放任何格式的数据,而不仅仅是字符串。</p>
<p>V1.4.3 新增用法<sup>NEW</sup>
data(obj)
可传入key-value形式的数据。</p>
</div>
</div>
<h3>参数</h3>
<div class="parameter">
<h4><strong>key</strong><span>String</span><em>V1.23</em></h4>
<p>存储的数据名.</p>
<h4><strong>key,value</strong><span>String,Any</span><em>V1.2.3</em></h4>
<p><strong>key</strong>:存储的数据名</p>
<p><strong>value</strong>:将要存储的任意数据</p>
<h4><strong>obj</strong><span>object</span><em>V1.4.3</em></h4>
<p>一个用于设置数据的键/值对</p>
<h4><strong>data()</strong><em>V1.4.3</em></h4>
</div>
<div class="example">
<h3>示例</h3>
<span id="f_ad2"></span>
<h4>描述:</h4>
<p>在一个div上存取数据</p>
<h5>HTML 代码:</h5>
<pre><code><div></div></code></pre>
<h5>jQuery 代码:</h5>
<pre><code>$("div").data("blah"); // undefined
$("div").data("blah", "hello"); // blah设置为hello
$("div").data("blah"); // hello
$("div").data("blah", 86); // 设置为86
$("div").data("blah"); // 86
$("div").removeData("blah"); //移除blah
$("div").data("blah"); // undefined</code></pre>
<h4>描述:</h4>
<p>在一个div上存取名/值对数据</p>
<h5>HTML 代码:</h5>
<pre><code><div></div></code></pre>
<h5>jQuery 代码:</h5>
<pre><code>$("div").data("test", { first: 16, last: "pizza!" });
$("div").data("test").first //16;
$("div").data("test").last //pizza!;</code></pre>
</div>
</div>
</div>
</body>
</html>