当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。