HTMLStyleElement: blocking 属性
blocking
属性是 HTMLStyleElement
接口的字符串,表示应阻止对某些关键子资源的获取。
它反映了 <style>
元素的 blocking
属性。
值
一个字符串。必须是以下列出的阻止标记的空格分隔列表,指示要阻止的操作
render
-
阻止屏幕上内容的渲染。
示例
html
<style id="el" blocking="render">
p {
color: blue;
}
</style>
js
const el = document.getElementById("el");
console.log(el.blocking); // Output: "render"
规范
规范 |
---|
HTML 标准 # dom-style-blocking |
浏览器兼容性
BCD 表格仅在浏览器中加载