$(this).attr(key); getAttribute(key) 메소드와 동일한 노드 속성 이름의 값을 가져옵니다.
$(this).attr(key, value); setAttribute(key, value) 메소드와 동일한 노드 속성
예:
var diywidgetid = $('#w_1').attr(' diywidgetid'); //노드 속성 가져오기
$(this).val()의 값은 $(this).attr(“value”)에 해당합니다. 🎜>
$(this) .val(value); $(this).attr(“value”,value)에 해당하는 요소 노드의 값을 설정합니다.
예:
var i_eg=$('#i_eg').val() // 요소 노드의 값을 가져옵니다.