📅  最后修改于: 2023-12-03 15:23:49.382000             🧑  作者: Mango
在开发中,我们有时会需要将按钮设为不可点击状态。这时,我们可以通过以下方式来实现:
document.getElementById('button').disabled = true;
button.disabled {
cursor: not-allowed;
opacity: 0.6;
}
<button class="disabled">按钮</button>
button.disabled {
position: relative;
}
button.disabled:after {
content: "";
display: block;
position: absolute;
top:0;
left:0;
bottom:0;
right:0;
background-color: rgba(255,255,255,0.5); /*添加半透明遮罩层*/
}
<button class="disabled">按钮</button>
通过以上方式,我们可以使按钮不可点击,并且增强用户体验。