@ disabled 속성의 값 가져와 비활성화 되어 있는지 확인하기 비활성화 되어 있다면 isDisabled의 값은 disabled
var isDisabled = $("#editBox").attr("disabled");
@ disabled 속성 설정하기 true면 비활성화 false면 활성화
$("#editBox").attr("disabled", true); //비활성화
$("#editBox").attr("disabled", false); //활성화
Syntax
Return the value of an attribute:
$(selector).attr(attribute)
Set the attribute and value:
$(selector).attr(attribute,value)
Set attribute and value using a function:
$(selector).attr(attribute,function(index,currentvalue))
Set multiple attributes and values:
$(selector).attr({attribute:value, attribute:value,...})
Parameter | Description |
---|---|
attribute | Specifies the name of the attribute |
value | Specifies the value of the attribute |
function(index,currentvalue) | Specifies a function that returns the attribute value to set
|
'JavaScript & JQuery' 카테고리의 다른 글
[isotop.js] ajax 호출 후 isotop 적용 (0) | 2018.05.31 |
---|---|
[JavaScript] Android Mobile touch events(안드로이드 모바일 디바이스에서 터치이벤트) (0) | 2015.04.21 |
[JavaScript] Device 종류 확인하기 (0) | 2015.04.21 |
[JSON] Object 배열을 LocalStorage & SessionStorage에 저장하기 (1) | 2015.04.01 |
[JavaScript] 정규식 숫자 필터링 (0) | 2015.04.01 |