标题禁用 按钮 或 其他标签
button :添加标签属性 disable
其他标签 :添加样式 style = pointer-events:none;
例子:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.btn,button,input{
width: 100px;
height: 40px;
line-height: 40px;
color: #ffffff;
text-align: center;
background: linear-gradient(to bottom right,#54b8f4,#5c78eb);
border-radius: 5px;
margin: 10px;
border: none;
outline: 0;
}
.btn:active,input:active,button:active{
opacity: 0.5;
}
</style>
</head>
<body>
<div class="btn" style="pointer-events: none;">div 按钮</div>
<p class="btn" style="pointer-events: none;">p 按钮</p>
<input type="button" value="input 按钮" disabled>
<button disabled>button 按钮</button>
</body>
</html>