HTML DOM Node isSupported() 方法 | DOM 对象:HTML DOM 元素对象

返回到:DOM 对象:HTML DOM 元素对象

定义和用法

isSupported() 方法用于判断当前节点是否支持某个特性。

所有主要浏览器都支持 isSupported 方法

注意: Internet Explorer 8 及更早IE版本不支持该方法。

语法

node.isSupported(feature,version)

参数

参数类型描述
featureString必须。定义了你想要检查是否支持的特性
versionString可选。定义了你想检查是否支持的版本。

返回值

类型描述
Boolean如果支持该特性返回 true, 否则返回false。

技术细节

DOM 版本Core Level 2 Node Object

实例

按钮元素支持判断版本2.0内核特性:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Web176教程网(web176.com)</title>
</head>
<body>

<button onclick="myFunction()">点我</button>
<p id="demo">单击按钮检查功能核心XML DOM 2对按钮元素是否支持。</p>
<script>
function myFunction(){
	var item=document.getElementsByTagName("BUTTON")[0];
	var x=document.getElementById("demo");
	x.innerHTML=item.isSupported("Core","2.0");
}
</script>
<p><strong>注意:</strong> Internet Explorer 8 及之前版本不支持isSupported 方法。</p>

</body>
</html>

作者:terry,如若转载,请注明出处:https://www.web176.com/javascriptbook/domtips/4438.html

(0)
打赏 支付宝 支付宝 微信 微信
terryterry
上一篇 2021年12月10日 下午2:44
下一篇 2021年12月10日 下午2:49

相关推荐

发表回复

登录后才能评论