Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

href

概述

返回当前样式表文件的URI地址.

语法

uri = stylesheet.href 

参数

  • uri 为一个字符串,包含了样式表文件的URI地址.

例子

 // 在本机环境下
 <html> 
  <head> 
   <link rel="StyleSheet" href="example.css" type="text/css" /> 
   <script> 
    function sref() { 
     alert(document.styleSheets[0].href); 
    }
   </script> 
  </head> 
  <body> 
   <div class="thunder">Thunder</div>
   <button onclick="sref()">ss</button>
  </body> 
 </html>
// 弹出 "file:////C:/Windows/Desktop/example.css

备注

如果该样式表是一个外链样式表文件,则它的href属性值为样式表文件的URI. 但如果该样式表是一个内联样式表,则它的href属性值为null.

该属性在Firefox, Opera, Google Chrome, Safari中为只读属性,在Internet Explorer中可读可写.

规范

stylesheet.href

文档标签和贡献者

 此页面的贡献者: teoli, mimzi_fahia, ziyunfei
 最后编辑者: teoli,