當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM Link type屬性用法及代碼示例


鏈接類型屬性設置/返回鏈接文檔的類型。

用法

以下是語法 -

  • 返回type屬性值
linkObject.type
  • 環境type到一個有效值
linkObject.type = value

NOTE − 有效值包括 "text/javascript"、"text/css"、"image/gif" 等。

示例

讓我們看一個例子Link type屬性 -

<!DOCTYPE html>
<html>
<head>
<title>Link type</title>
<link id="extStyle" rel="stylesheet" href="style.css" type="myStyle">
</head>
<body>
<form>
<fieldset>
<legend>Link-type</legend>
<input type="button" value="Correct Type" onclick="correctType()">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var extStyle = document.getElementById("extStyle");
   divDisplay.textContent = 'The linked document type:'+extStyle.type+' is not compatible';
   function correctType(){
      extStyle.type = 'text/css';
      divDisplay.textContent = 'Congrats! The linked document type:'+extStyle.type+' is compatible';
   }
</script>
</body>
</html>

在上麵的例子中‘style.css’包含 -

form {
   width:70%;
   margin:0 auto;
   text-align:center;
}
* {
   padding:2px;
   margin:5px;
}
input[type="button"] {
   border-radius:10px;
}

輸出

這將產生以下輸出 -

點擊前‘Correct Type’按鈕 -

點擊後 ‘Correct Type’按鈕 -

相關用法


注:本文由純淨天空篩選整理自AmitDiwan大神的英文原創作品 HTML DOM Link type Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。