href - Web API 接口参考 编辑
概述
返回当前样式表文件的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中可读可写.
规范
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论