Home > Article > Web Front-end > What is the way to make a button unavailable in jquery
jquery使按钮不可用的方法是:【$("#btn").attr("disabled", true);】。我们还可以通过js来实现,如【document.getElementById("btn").disabled = true;】。
本教程操作环境:windows10系统、jquery2.2.4版,该方法适用于所有品牌电脑。
(学习视频分享:javascript视频教程)
有如下三种实现方式:
html代码
<input type='button' value = '提交' id=‘btn’/>
javascript代码
document.getElementById("btn").disabled = true;
jquery代码
$("#btn").attr("disabled", true);
相关推荐:js教程
The above is the detailed content of What is the way to make a button unavailable in jquery. For more information, please follow other related articles on the PHP Chinese website!