亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

jQuery Mobile

jQuery中data()方法的語法結(jié)構(gòu)及實例代碼

時間:2024-08-28 01:25:44 jQuery Mobile 我要投稿
  • 相關(guān)推薦

jQuery中data()方法的語法結(jié)構(gòu)及實例代碼

  jQuery中data()方法的語法結(jié)構(gòu)及實例代碼

  此方法可以向匹配元素附加數(shù)據(jù),或者從匹配元素獲取數(shù)據(jù)。

  語法結(jié)構(gòu)一:

  復(fù)制代碼 代碼如下:$(selector).data(name,value)

  參數(shù)列表:

  參數(shù) 描述 name 存儲的數(shù)據(jù)名稱。 value 將要存儲的任意數(shù)據(jù)。

  實例代碼:

  復(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ù)名稱返回。

  語法結(jié)構(gòu)二:

  從匹配元素中返回指定數(shù)據(jù)名稱的附加的數(shù)據(jù)。

  復(fù)制代碼 代碼如下:$(selector).data(name)

  參數(shù)列表:

  參數(shù) 描述 name 存儲的.數(shù)據(jù)名稱。

  實例代碼:

  復(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ù)名稱返回。

  語法結(jié)構(gòu)三:

  使用鍵/值對對象向匹配元素添加數(shù)據(jù)。

  復(fù)制代碼 代碼如下:$(selector).data(properties)

  參數(shù)列表:

  參數(shù) 描述 properties 一個用于設(shè)置數(shù)據(jù)的鍵/值對。

  實例代碼:

  復(fù)制代碼 代碼如下:

  $(document).ready(function(){

  $("#add").click(function(){

  $("div").data("mydata",{username:"daoliang"});

  })

  $("#show").click(function(){

  alert($("div").data("mydata").username);

  })

  })

  把數(shù)據(jù)添加元素

  獲取添加到元素的數(shù)據(jù)

  以上代碼能夠以鍵/值對方式為div附加名稱為mydata的數(shù)據(jù),然后通過數(shù)據(jù)名和鍵取得附加的數(shù)據(jù)值。

  語法結(jié)構(gòu)四:

  使用對象方式為指定元素附加數(shù)據(jù)。

  復(fù)制代碼 代碼如下:$(selector).data(object)

  參數(shù)列表:

  參數(shù) 描述 object 一個用于設(shè)置數(shù)據(jù)的對象。

  實例代碼:

  復(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ù)

  以上代碼以對象方式附加數(shù)據(jù),并且取得附加的數(shù)據(jù)值。

  希望本文所述對大家的jQuery程序設(shè)計有所幫助。

【jQuery中data()方法的語法結(jié)構(gòu)及實例代碼】相關(guān)文章:

硬盤邏輯故障解決方法實例07-16

excel中驗算公式使用實例介紹12-08

Excel中if函數(shù)使用的方法06-16

數(shù)控編程代碼大全02-13

音樂中節(jié)奏的訓(xùn)練方法06-20

沖突管理中的有效溝通方法05-05

Java代碼的基本知識09-03

在Word文檔中給文章段落分欄的方法11-10

excel中sumif函數(shù)使用方法03-23

Excel中COUNTIF函數(shù)的使用方法01-23