当前位置:主页 > 网页前端 > jquery >

Bootstrap中点击按钮后变灰并显示加载中实例代码

时间:2020-11-03 13:45:25 | 栏目:jquery | 点击:

Bootstrap插件非常的好用了,我们今天一起来看一篇关于Bootstrap实现点击按钮之后按钮变成不可点击的一个效果了,具体的如下所示.

1.在按钮中加入data-loading-text,即点击按钮后显示的文字

<button type="submit" class="btn btn-primary btn-check" data-loading-text="提交中...">添加成员</button> 

2.当点击按钮后禁用按钮,并显示文字。如需绑定其他事件请自行更改。

第二三行为重要内容。

$(".btn-check").click(function () { 
$(this).button('loading');//禁用按钮并显示提交中 
$(this).button('reset');//重置按钮 
}); 

3.设置disabled属性为true即为不可用状态。

document.getElementByIdx("btn").disabled=true; 

jquery

$("#btn").attr("disabled", true); 

html:

<input type="button" value="提交" id="btn"> 

您可能感兴趣的文章:

相关文章