x
 
<!DOCTYPE html>
<html>
<body>
<h1>inert 属性</h1>
<div inert>
  <button onclick="alert(42)">点击我!</button>
  <input type="text">
  <a href="https://w3school.com.cn">W3School.com.cn</a>
</div> 
<p>由于设置了 inert 属性,上面的按钮、链接和输入字段已被禁用。</p>
</body>
</html>