单击按钮(jQuery)检查输入值

时间:2014-07-22 21:39:39

标签: jquery input onclick

我需要检查输入是否对点击按钮(而不是提交按钮)有价值。它应该非常简单,但不确定为什么它不起作用?它是重力形式,按钮是" next"按钮继续表格..这是我到目前为止...

jQuery(document).ready(function($) {

$('#gform_next_button_6_69').click(function(){                

    if($("#input_6_1").val().length == 0) {//to be applied if at least 1 input has no value
        alert("Has No Value");
    }
    else{
        alert("Has Value");
    }
});

}); /* end document ready */

<input type="button" id="gform_next_button_6_69" class="button gform_next_button" value="Next" tabindex="91" onclick="jQuery(&quot;#gform_target_page_number_6&quot;).val(&quot;6&quot;); jQuery(&quot;#gform_6&quot;).trigger(&quot;submit&quot;,[true]); ">

<input name="input_1" id="input_6_1" type="text" value="" class="medium" tabindex="49">

1 个答案:

答案 0 :(得分:0)

$( document ).ready(function() {

    $('#button').click(function(){                   
        if( $("#inputID").val().length == 0) {
            alert("Has No Value");
        }
        else {
            alert("Has Value");
        }
    });

});

SAMPLE HERE