최신 웹 개발 튜토리얼
 

장애인 속성을 연결

링크 객체 참조 링크 개체

링크 된 문서를 사용 안 함 :

document.getElementById("myLink").disabled = true;
»그것을 자신을 시도

정의 및 사용

장애인 속성을 설정하거나 반환 링크 된 문서는 비활성화 여부.

이 속성은 현재는 스타일 시트 링크와 함께 사용됩니다.

true로 설정하면, 연결된 스타일 시트는 영향을주지 않습니다.


브라우저 지원

Internet ExplorerFirefoxOperaGoogle ChromeSafari

장애인이 호텔은 모든 주요 브라우저에서 지원됩니다.


통사론

장애인 속성을 반환 :

linkObject .disabled

장애인 속성을 설정 :

linkObject .disabled=true|false

속성 값

Value Description
true|false Specifies whether the linked document is disabled or not
  • true - The linked document is disabled
  • false - The linked document is not disabled

기술적 세부 사항

반환 값 : 링크 된 문서가 무효 인 경우 부울는, 그렇지 않으면 false를 반환 true를 반환

더 예

링크 된 문서를 비활성화하거나하지 않은 경우 알아 :

var x = document.getElementById("myLink").disabled;

x의 결과는 다음과 같습니다

false
»그것을 자신을 시도

링크 객체 참조 링크 개체