最新的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>媒體屬性


鏈接對象參考 鏈接對象