Document.lastStyleSheetSet - Web API 接口参考 编辑
已废弃
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
Document.lastStyleSheetSet
返回最后一个启用的样式表集合。当 document.selectedStyleSheetSet
属性发生变化时,这个属性的值就会随之发生变化。
语法
var lastStyleSheetSet = document.lastStyleSheetSet
返回时, lastStyleSheetSet 指示最近设置的样式表。 如果当前样式表集尚未通过设置更改 document.selectedStyleSheetSet
, 则返回值为 null
。
document.enableStyleSheetsForSet()
被执行时,该值不会该变。示例
let lastSheetSet = document.lastStyleSheetSet;
if (!lastSheetSet) {
lastSheetSet = 'Style sheet not yet changed';
}
else {
console.log('The last style sheet set is: ' + lastSheetSet);
}
浏览器兼容性
BCD tables only load in the browser
此页面上的兼容性表单是根据结构化数据自动生成的。 如果您想提供其他数据,请查看 https://github.com/mdn/browser-compat-data 并向我们发送请求。相关链接
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论