JavaScript 参考手册
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>
运行结果:
点击运行 »