最新的Web開發教程
 

禁用鏈接屬性

鏈接對象參考 鏈接對象

禁用鏈接的文檔:

document.getElementById("myLink").disabled = true;
試一試»

定義和用法

禁用的屬性設置或返回是否鏈接的文檔被禁用,還是不行。

該酒店目前只用樣式表的鏈接使用。

如果設置為true,鏈接的樣式表將不會有任何效果。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

禁用的屬性在所有主流瀏覽器的支持。


句法

返回disabled屬性:

linkObject .disabled

設置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

技術細節

返回值: 布爾,如果鏈接的文檔被禁止返回true,否則返回false

更多示例

查找出來,如果鏈接的文檔被禁用與否:

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

x的結果將是:

false
試一試»

鏈接對象參考 鏈接對象