- 相關(guān)推薦
jQuery中data()方法的語(yǔ)法結(jié)構(gòu)及實(shí)例代碼
jQuery中data()方法的語(yǔ)法結(jié)構(gòu)及實(shí)例代碼
此方法可以向匹配元素附加數(shù)據(jù),或者從匹配元素獲取數(shù)據(jù)。
語(yǔ)法結(jié)構(gòu)一:
復(fù)制代碼 代碼如下:$(selector).data(name,value)
參數(shù)列表:
參數(shù) 描述 name 存儲(chǔ)的數(shù)據(jù)名稱。 value 將要存儲(chǔ)的任意數(shù)據(jù)。
實(shí)例代碼:
復(fù)制代碼 代碼如下:
$(document).ready(function(){
$("#add").click(function(){
$("div").data("mydata","歡迎您");
})
$("#show").click(function(){
$("div").text($("div").data("mydata"));
})
})
向元素添加數(shù)據(jù)
顯示添加的數(shù)據(jù)
以上代碼能夠在匹配的div元素上附加名稱mydata,值為“歡迎您”的數(shù)據(jù),然后利用數(shù)據(jù)名稱返回。
語(yǔ)法結(jié)構(gòu)二:
從匹配元素中返回指定數(shù)據(jù)名稱的.附加的數(shù)據(jù)。
復(fù)制代碼 代碼如下:$(selector).data(name)
參數(shù)列表:
參數(shù) 描述 name 存儲(chǔ)的數(shù)據(jù)名稱。
實(shí)例代碼:
復(fù)制代碼 代碼如下:
$(document).ready(function(){
$("#add").click(function(){
$("div").data("mydata","歡迎您");
})
$("#show").click(function(){
$("div").text($("div").data("mydata"));
})
})
向元素添加數(shù)據(jù)
顯示添加的數(shù)據(jù)
以上代碼能夠在匹配的div元素上附加名稱mydata,值為“歡迎您”的數(shù)據(jù),然后利用數(shù)據(jù)名稱返回。
語(yǔ)法結(jié)構(gòu)三:
使用鍵/值對(duì)對(duì)象向匹配元素添加數(shù)據(jù)。
復(fù)制代碼 代碼如下:$(selector).data(properties)
參數(shù)列表:
參數(shù) 描述 properties 一個(gè)用于設(shè)置數(shù)據(jù)的鍵/值對(duì)。
實(shí)例代碼:
復(fù)制代碼 代碼如下:
$(document).ready(function(){
$("#add").click(function(){
$("div").data("mydata",{username:"daoliang"});
})
$("#show").click(function(){
alert($("div").data("mydata").username);
})
})
把數(shù)據(jù)添加元素
獲取添加到元素的數(shù)據(jù)
以上代碼能夠以鍵/值對(duì)方式為div附加名稱為mydata的數(shù)據(jù),然后通過數(shù)據(jù)名和鍵取得附加的數(shù)據(jù)值。
語(yǔ)法結(jié)構(gòu)四:
使用對(duì)象方式為指定元素附加數(shù)據(jù)。
復(fù)制代碼 代碼如下:$(selector).data(object)
參數(shù)列表:
參數(shù) 描述 object 一個(gè)用于設(shè)置數(shù)據(jù)的對(duì)象。
實(shí)例代碼:
復(fù)制代碼 代碼如下:
$(document).ready(function(){
var mytest=new Object();
mytest.first="歡迎您";
mytest.second="JQuery專區(qū)";
$("#add").click(function(){
$("div").data(mytest);
})
$("#show").click(function(){
alert($("div").data("second"));
})
});
把數(shù)據(jù)添加元素
獲取添加到元素的數(shù)據(jù)
以上代碼以對(duì)象方式附加數(shù)據(jù),并且取得附加的數(shù)據(jù)值。
希望本文所述對(duì)大家的jQuery程序設(shè)計(jì)有所幫助。
【jQuery中data()方法的語(yǔ)法結(jié)構(gòu)及實(shí)例代碼】相關(guān)文章:
jquery提交按鈕的代碼07-28
jQuery中prev()方法用法07-16
基于jQuery的固定表格頭部的代碼08-30
ASP網(wǎng)頁(yè)程序設(shè)計(jì)中10個(gè)非常有用的實(shí)例代碼08-12
關(guān)jQuery彈出窗口簡(jiǎn)單實(shí)現(xiàn)代碼-javascript編程06-07
jQuery中parent()和siblings()的問題10-16
關(guān)于jQuery實(shí)現(xiàn)高亮顯示的方法介紹08-20