我需要检查输入是否对点击按钮(而不是提交按钮)有价值。它应该非常简单,但不确定为什么它不起作用?它是重力形式,按钮是" 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("#gform_target_page_number_6").val("6"); jQuery("#gform_6").trigger("submit",[true]); ">
<input name="input_1" id="input_6_1" type="text" value="" class="medium" tabindex="49">
答案 0 :(得分:0)
$( document ).ready(function() {
$('#button').click(function(){
if( $("#inputID").val().length == 0) {
alert("Has No Value");
}
else {
alert("Has Value");
}
});
});