HTML DOM Link sizes 属性
HTML DOM Link sizes 属性返回 link 元素的 sizes 属性值。
注意 − 只有当 rel 属性设置为 ‘icon’ 时,才会使用 sizes 属性
语法
语法如下 −
返回 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; }
输出
这将产生以下输出 −
广告