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


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


HTML DOM 鏈接大小屬性返回鏈接元素的大小屬性值。

NOTE - 僅當 rel 屬性設置為 size 屬性時才使用‘icon’

用法

以下是語法 -

返回sizes屬性值

linkObject.sizes

示例

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

<!DOCTYPE html>
<html>
<head>
<title>Link sizes</title>
<link id="extStyle" rel="icon" href="new.gif" sizes="10x10">
</head>
<body>
<form>
<fieldset>
<legend>Link-sizes</legend>
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var extStyle = document.getElementById("extStyle");
   if(extStyle.sizes == '10x10')
      divDisplay.textContent = 'The linked icon size:'+extStyle.sizes+' is not compatible';
   else
      divDisplay.textContent = 'Congrats! The linked icon size 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;
}

輸出

這將產生以下輸出 -

相關用法


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