supports()中的方法HTML 文档对象模型用于检查 DOM TokenList 中是否支持特定令牌。
用法:
domtokenlist.supports(token)
参数值:它包含一个值token 指定要检查的令牌的名称。
返回值:它返回一个布尔值,该值返回true如果指定的令牌属于 DOM TokenList。
例子:下面的 HTML 代码说明了使用supports()HTML DOM 中的方法。
HTML
<!DOCTYPE html>
<html>
<body style="text-align:center">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<h2>HTML DOM TokenList supports() Method</h2>
<iframe id="iframeID" src=
"https://ide.geeksforgeeks.org/index.php">
</iframe>
<p>
Click on the below button if the
iframe supports "allow-forms":or not
</p>
<button onclick="btnclick()">
Click Here!
</button>
<p id="paraID" style="font-size:25px"></p>
<script>
function btnclick() {
const list = document.getElementById(
"iframeID").sandbox;
document.getElementById("paraID").innerHTML
= list.supports("allow-forms");
}
</script>
</body>
</html>
输出:
支持的浏览器:
- 谷歌浏览器 49 及以上版本
- 边 17 及以上
- 不支持 Internet Explorer
- 火狐浏览器 49 及以上版本
- Safari 10.1 及以上版本
- Opera 36 及以上
相关用法
- HTML DOM TokenList.remove()用法及代码示例
- HTML DOM TokenList.replace()用法及代码示例
- HTML DOM Textarea form属性用法及代码示例
- HTML DOM Textarea name属性用法及代码示例
- HTML DOM Textarea defaultValue属性用法及代码示例
- HTML DOM Textarea maxLength属性用法及代码示例
- HTML DOM Textarea placeholder属性用法及代码示例
- HTML DOM Textarea select()用法及代码示例
- HTML DOM Textarea required属性用法及代码示例
- HTML DOM Textarea autofocus属性用法及代码示例
- HTML DOM Textarea wrap属性用法及代码示例
- HTML DOM Textarea readOnly属性用法及代码示例
- HTML DOM Textarea disabled属性用法及代码示例
- HTML DOM TableData colSpan属性用法及代码示例
- HTML DOM Table tHead属性用法及代码示例
- HTML DOM Table tFoot属性用法及代码示例
- HTML DOM Textarea cols属性用法及代码示例
- HTML DOM Table caption属性用法及代码示例
- HTML DOM TableData rowSpan属性用法及代码示例
- HTML DOM Textarea rows属性用法及代码示例
- HTML DOM TableHeader abbr属性用法及代码示例
- HTML DOM TableData headers属性用法及代码示例
- HTML DOM Table createTHead()用法及代码示例
- HTML DOM Table insertRow()用法及代码示例
- HTML DOM Table deleteCaption()用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML DOM TokenList supports() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。