简单教程
提交运行
代码编辑器:
<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>
运行结果: