최신 웹 개발 튜토리얼
 

링크 미디어 속성

링크 객체 참조 링크 개체

링크 요소를 대상으로 미디어 타입을 돌려줍니다 :

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

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

screen
»그것을 자신을 시도

정의 및 사용

미디어 속성 집합 또는 링크 요소의 미디어 타입을 반환합니다.

미디어 타입은 스타일 정보 중요합니다. 스타일은 컴퓨터와 모바일 장치를위한 다를 수 있습니다.


브라우저 지원

Internet ExplorerFirefoxOperaGoogle ChromeSafari

미디어 속성은 모든 주요 브라우저에서 지원됩니다.


통사론

미디어 속성을 반환합니다 :

linkObject .media

미디어 속성을 설정 :

linkObject .media=device

속성 값

Value Description
all For all devices. This is default
aural For speech synthesizers
braille For Braille tactile feedback devices
embossed For paged Braille printers
handheld For handheld devices
print For printed pages and print preview
projection For projectors or transparencies
screen For color computer screens
speech For speech synthesizers
tty For teletype devices
tv For TV-type devices

기술적 세부 사항

반환 값 : 미디어 유형의 쉼표로 구분 된 목록을 나타내는 문자열,

더 예

미디어 유형을 변경 :

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

관련 페이지

HTML 참조 : HTML <link> 미디어 속성


링크 객체 참조 링크 개체