DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jquery $(this).attr $(this).val方法使用介紹
jquery $(this).attr $(this).val方法使用介紹
編輯:JQuery特效代碼     
$(this).attr(key); 獲取節點屬性名的值,相當於getAttribute(key)方法

$(this).attr(key, value); 設置節點屬性的值,相當於setAttribute(key,value)方法

eg:<div id="w_1" class="widget" diywidgetid="${template.diyWidgetId}"></div>

var diywidgetid = $('#w_1').attr('diywidgetid'); //獲取節點屬性的值

$(this).val();獲取某個元素節點的value值,相當於$(this).attr(“value”);

$(this).val(value);設置某個元素節點的value值,相當於$(this).attr(“value”,value);

eg:<input id="i_eg" value="1" type="text"></input>

var i_eg=$('#i_eg').val(); // 獲取元素節點的value 值
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved