最新的Web开发教程
 

链路媒介属性

链接对象参考 链接对象

返回媒体类型的链接元素是用于:

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>媒体属性


链接对象参考 链接对象