专注前端素材!
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>素材8网教程(study.sucai8.cn)</title> </head> <body> <p id="demo">单击按钮,查看body元素是否有任何属性</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ var x=document.getElementById("demo"); x.innerHTML=document.body.hasAttributes(); } </script> <p>尝试添加一个属性到body元素,结果将返回 <em>true</em> 代替<em>false</em>.</p> <p><strong>注意:</strong> IE 8和更早的版本不支持hasAttributes 方法。</p> </body> </html>
运行结果