HTML DOM Node isSupported() 方法

元素对象参考手册 元素对象

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

<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>

尝试一下 »


定义和用法

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


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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

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


语法

node.isSupported(feature, version)

参数

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

返回值

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

技术细节

DOM 版本 Core Level 2 Node Object

元素对象参考手册 元素对象