首頁 >web前端 >js教程 >jquery $(this).attr $(this).val方法使用介紹_jquery

jquery $(this).attr $(this).val方法使用介紹_jquery

WBOY
WBOY原創
2016-05-16 17:20:321211瀏覽

$(this).attr(key); 取得節點屬性名的值,相當於getAttribute(key)方法

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

eg:



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

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

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

eg:

var i_eg=$('#i_eg').val(); // 取得元素節點的value 值
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn