<h3>禁用</h3>
<h5>通过disabled</h5>
<button disabled onclick="alert(11)">按钮</button>
<h5>通过pointr-events:none</h5>
<button class="button" disabled onclick="alert(11)">按钮</button>
<a class="button" disabled onclick="alert(11)">按钮</a>
.button[disabled]{
pointer-events:none;
user-select:none;
color: graytext;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.