jQuery中data()方法用法实例
本文实例讲述了jQuery中data()方法用法。分享给大家供大家参考。具体分析如下:
此方法可以向匹配元素附加数据,或者从匹配元素获取数据。
语法结构一:
$(selector).data(name,value)
参数列表:
实例代码:
<!DOCTYPEhtml> <html> <head> <metacharset="utf-8"> <metaname="author"content="https://www.nhooo.com/"/> <title>data()函数-毛票票</title> <scripttype="text/javascript"src="mytest/jQuery/jquery-1.8.3.js"></script> <scripttype="text/javascript"> $(document).ready(function(){ $("#add").click(function(){ $("div").data("mydata","毛票票欢迎您"); }) $("#show").click(function(){ $("div").text($("div").data("mydata")); }) }) </script> </head> <body> <div></div> <buttonid="add">向元素添加数据</button> <buttonid="show">显示添加的数据</button> </body> </html>
以上代码能够在匹配的div元素上附加名称mydata,值为“毛票票欢迎您”的数据,然后利用数据名称返回。
语法结构二:
从匹配元素中返回指定数据名称的附加的数据。
$(selector).data(name)
参数列表:
实例代码:
<!DOCTYPEhtml> <html> <head> <metacharset="utf-8"> <metaname="author"content="https://www.nhooo.com/"/> <title>data()函数-毛票票</title> <scripttype="text/javascript"src="mytest/jQuery/jquery-1.8.3.js"></script> <scripttype="text/javascript"> $(document).ready(function(){ $("#add").click(function(){ $("div").data("mydata","毛票票欢迎您"); }) $("#show").click(function(){ $("div").text($("div").data("mydata")); }) }) </script> </head> <body> <div></div> <buttonid="add">向元素添加数据</button> <buttonid="show">显示添加的数据</button> </body> </html>
以上代码能够在匹配的div元素上附加名称mydata,值为“毛票票欢迎您”的数据,然后利用数据名称返回。
语法结构三:
使用键/值对对象向匹配元素添加数据。
$(selector).data(properties)
参数列表:
实例代码:
<!DOCTYPEhtml> <html> <head> <metacharset="utf-8"> <metaname="author"content="https://www.nhooo.com/"/> <title>data()函数-毛票票</title> <scripttype="text/javascript"src="mytest/jQuery/jquery-1.8.3.js"></script> <scripttype="text/javascript"> $(document).ready(function(){ $("#add").click(function(){ $("div").data("mydata",{username:"daoliang"}); }) $("#show").click(function(){ alert($("div").data("mydata").username); }) }) </script> </head> <body> <div></div> <buttonid="add">把数据添加元素</button> <buttonid="show">获取添加到元素的数据</button> </body> </html>
以上代码能够以键/值对方式为div附加名称为mydata的数据,然后通过数据名和键取得附加的数据值。
语法结构四:
使用对象方式为指定元素附加数据。
$(selector).data(object)
参数列表:
实例代码:
<!DOCTYPEhtml> <html> <head> <metacharset="utf-8"> <metaname="author"content="https://www.nhooo.com/"/> <title>data()函数-毛票票</title> <scripttype="text/javascript"src="mytest/jQuery/jquery-1.8.3.js"></script> <scripttype="text/javascript"> $(document).ready(function(){ varmytest=newObject(); mytest.first="毛票票欢迎您"; mytest.second="JQuery专区"; $("#add").click(function(){ $("div").data(mytest); }) $("#show").click(function(){ alert($("div").data("second")); }) }); </script> </head> <body> <div></div> <buttonid="add">把数据添加元素</button> <buttonid="show">获取添加到元素的数据</button> </body> </html>
以上代码以对象方式附加数据,并且取得附加的数据值。
希望本文所述对大家的jQuery程序设计有所帮助。