— jquery, disabled, attr, prop — 1 min read
정말 많이 쓰는데 'disable'인지 'disabled'인지 자주 헷갈린다.
1$(elem).attr("disabled", true);2$(elem).attr("disabled", false);
Tip.
아래와 같이 삼항연산자를 이용해서 true
, false
를 제어하면 보기도 좋고 코드도 줄어들고 편리하다.
1$(elem).attr("disabled", condition ? true : false);
HTML
에 관련된 것은.attr()
Javascript
에 관련된 것은.prop()
.attr()
와 .prop()
로 나눔..prop("checked", true)
로 해결.The difference between attributes and properties can be important in specific situations. Before jQuery 1.6, the .attr() method sometimes took property values into account when retrieving some attributes, which could cause inconsistent behavior. As of jQuery 1.6, the .prop() method provides a way to explicitly retrieve property values, while .attr() retrieves attributes.
.attr()
에서 문제가 있어서.prop()
만들었음. 궁금하면 문서 더 보세요.