jQuery 數(shù)據(jù) jQuery.data() 方法
jQuery 數(shù)據(jù) jQuery.data() 方法
data() 方法向被選元素附加數(shù)據(jù),或者從被選元素獲取數(shù)據(jù)。
注釋:這是底層級的方法;使用 .data() 更加方便。
1. 范例
向元素附加數(shù)據(jù),然后取回該數(shù)據(jù):
$("#btn1").click(function(){ $("div").data("greeting", "Hello World"); }); $("#btn2").click(function(){ alert($("div").data("greeting")); });
2. 從元素返回數(shù)據(jù)
從被選元素中返回附加的數(shù)據(jù)。
語法
$(selector).data(name)
參數(shù) | 描述 |
---|---|
name |
可選。規(guī)定要取回的數(shù)據(jù)的名稱。 如果沒有規(guī)定名稱,則該方法將以對象的形式從元素中返回所有存儲的數(shù)據(jù)。 |
3. 向元素附加數(shù)據(jù)
向被選元素附加數(shù)據(jù)。
語法
$(selector).data(name,value)
參數(shù) | 描述 |
---|---|
name | 必需。規(guī)定要設(shè)置的數(shù)據(jù)的名稱。 |
value | 必需。規(guī)定要設(shè)置的數(shù)據(jù)的值。 |
4. 使用對象向元素附加數(shù)據(jù)
使用帶有名稱/值對的對象向被選元素添加數(shù)據(jù)。
語法
$(selector).data(object)
參數(shù) | 描述 |
---|---|
object | 必需。規(guī)定包含名稱/值對的對象。 |
相關(guān)文章
- jQuery 事件
- jQuery 參考手冊 屬性操作
- jQuery 事件 unbind() 方法
- jQuery 事件 undelegate() 方法
- jQuery DOM 元素方法 toArray() 方法
- jQuery 數(shù)據(jù) jQuery.data() 方法
- jQuery 遍歷 add() 方法
- jQuery 遍歷 not() 方法
- jQuery 遍歷 parents() 方法
- jQuery ajax ajax() 方法
- jQuery ajax ajaxError() 方法
- jQuery ajax post() 方法
- jQuery 屬性操作 hasClass() 方法
- jQuery 文檔操作 detach() 方法
- jQuery 效果 animate() 方法
- jQuery 效果 fadeOut() 方法
- jQuery 效果 slideToggle() 方法
- jQuery 效果 toggle() 方法
- jQuery :gt 選擇器
- jQuery :input 選擇器