我有一个水平的单页网站,每个页面都包含多步表单,下一个按钮后面会重定向到第二页。
我希望用户在填写给定表单中的所有必填字段之前无法进入下一页。
这是删节代码,只有有限的月份,年份和国籍选择:
<div class="step-content hide">
<div class="row">
<div class="col-sm-12">
<div class="col-sm-4" id="artle_tellusmore_label_para" style="float:left;">
<label id="artle_tellusmore_label">Date of Birth</label id="artle_tellusmore_label">
<label id="artle_tellusmore_label">Gender</label>
<hr>
<div style="margin-left: 38px;" id="artle_tellusmore_profileimageupload">
<img style="height: 180px; width:165px;" id="output" src="image/artle_dp_dummy.png">
</div>
</div>
<div style="margin-left: 248px;" class="col-sm-8">
<div id="artle_date_of_birth_combo_box">
<select style="width: 60px;" name="birthday">
<option value="">-Day-</option>
<option value="">1</option>
<option value="">2</option>
</select>
<select style="width: 91px;" name="birthmonth">
<option value="">-Month-</option>
<option value="">January</option>
<option value="">February</option>
</select>
<select style="width: 67px;" name="birthyear">
<option value="">-Year-</option>
<option value="2007">2007</option>
<option value="2006">2006</option>
</select>
</div>
<div id="artle_tellusmore_gender_radio_button">
<input class="radio" type="radio"><span id="">Male</span>     
<input class="radio" type="radio"><span id="">Female</span>
</div>
<div id="artle_tellusmore_phone_number">
<input style="width: 223px; margin-top: 10px; height: 33px;" required="" pattern="[0-9]{10}" x-moz-errormessage="Enter a valid phone number" size="10" value="" placeholder="Phone Number" type="tel">
</div>
<div id="artle_tellusmore_nationality">
<select name="nationality" style="width: 225px;">
<option value="">-- Nationality --</option>
<option value="afghan">Afghan</option>
<option value="albanian">Albanian</option>
<option value="zimbabwean">Zimbabwean</option>
</select>
</div>
<div id="artle_tellusmore_state">
<input type="text" value="" placeholder="State" style="width: 223px; height: 33px;" />
</div>
<hr>
<div id="artle_tellusmore_">
<input type="file" name="file" accept="image/*" onchange="loadFile(event)" id="artistprofileuploadfileField">
<p style="margin-top: 15px; font-size: 1.1em;">You can upload a jpg, gif or png files</p>
</div>
</div>
</div>
<div style="clear:both;"></div>
<button class="next-button btn hide" id="artle_next_button">Next</button>
<input type="submit" class="submit-button btn" id="artle_next_button" value="Done" />
<button class="back-button btn" id="artle_next_button">Back</button>
</div>
</div>
答案 0 :(得分:0)
通过查看您的HTML,我不认为您使用的是HTML5。我假设您希望验证具有类表单字段的所有表单字段。
在这种情况下,您可以使用此代码:
首先检查所有表单元素是否具有值:
function validateForm(form) {
var isValid = true;
$('.form-field').each(function() {
if ( $(this).val() === '' )
isValid = false;
});
return isValid;
}
然后使用此更改事件来跟踪表单元素是否有任何更改,然后验证表单并启用或禁用下一个按钮
$(".form-field").change(function() {
if (validateForm() )
$(".next-button").show()
else
$(".next-button").hide()
});
请将上述代码作为指示。
答案 1 :(得分:0)
由于您尝试过的代码不足,无法给出确切的答案。但你正在寻找这样的东西。
$(document).ready(function(){
$('form').find('select').change(function() {
var disabled = false;
$('form').find('select').each(function() {
if ($(this).find('option:selected').val() === '') {
disabled = true;
}
});
$('form').find('input[type="submit"]').prop('disabled', disabled);
});
});
答案 2 :(得分:0)
用于验证所有输入,您可以执行以下操作。
<?php
$dfile = fopen("/usr/share/dict/words", "r");
while(!feof($dfile)) {
$mynextline = fgets($dfile);
if (preg_match("/lly/", $mynextline)) echo "$mynextline<br>";
}
$file = 'mycontent.txt'
file_put_contents($file, $mynextline);
?>
用于激活所有输入的提交按钮。
$("form").submit(function(event) {
var isValid = true;
$('input[type="text"]').each(function() {
if ( $(this).val() === '' )
isValid = false;
});
if (!isValid) event.preventDefault();
});