如何在文本仍为空时关闭Bootstrap加载按钮

时间:2014-06-17 12:35:40

标签: javascript jquery html twitter-bootstrap-3

请帮忙 我想在我的文本框仍为空时关闭引导程序加载按钮 在提交按钮将文本更改为加载

之前,用户需要填写所有文本框

发生在我身上的是,当用户点击提交按钮时,引导程序也会加载,即使页面文本框仍然有必填字段。

这是我目前的代码

<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css">
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
<script type="text/javascript">  
$(function() { 
$(".btn").click(function(){
    $(this).button('loading').delay(1000).queue(function() {
        $(this).button('reset');
        $(this).dequeue();
    });        
});
});   
</script>

<form class="form-horizontal" action="button.php" method="post" style=" width:450px;">

    <label class="control-label col-xs-3">Username Name :</label>
    <input type="textbox" class="form-control" name="txtfirst" placeholder="First Name"required>

    <label class="control-label col-xs-3">Password :</label>
    <input type="textbox" class="form-control" name="txtlast" placeholder="Last Name"required>

    <button type="submit" class="btn btn-primary" data-loading-text="    Loading...    ">Login</button>
</form>

请帮忙

1 个答案:

答案 0 :(得分:2)

从代码中看起来你的js函数调用绑定了单击按钮事件而不提交表单事件。 click事件不会进行任何表单验证。

试试这个:http://jsfiddle.net/Dde4U/

$(function() { 
    $(".btn").click(function(){
        if($('.form-horizontal').valid()){ //Checks if form is valid
            $(this).button('loading').delay(1000).queue(function() {
                $(this).button('reset');
                $(this).dequeue();
            });      
        }
    });
});