定义和用法
isSupported() 方法用于判断当前节点是否支持某个特性。
所有主要浏览器都支持 isSupported 方法
注意: Internet Explorer 8 及更早IE版本不支持该方法。
语法
node.isSupported(feature,version)
参数
参数 | 类型 | 描述 |
---|---|---|
feature | String | 必须。定义了你想要检查是否支持的特性 |
version | String | 可选。定义了你想检查是否支持的版本。 |
返回值
类型 | 描述 |
---|---|
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