$(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 值