下面的代码将验证当前可见字段集中的必填字段,但前提是这些字段是文本框。
如何加密代码以验证作为单选按钮的字段?
我的jsfiddle>> http://jsfiddle.net/justmelat/zwXRr/
我的HTML:>>
<form method="post" action="">
<div id="holdErrMsg"></div>
<fieldset id="mainSection" name="mainSection">
<legend style="color:blue; font-weight:bold">Project Overview Section</legend>
<table style="width: 100%">
<tr>
<td style="height: 33px; width: 178px;">Name</td>
<td style="height: 33px"><input id="1125" name="1125" class="1125-required" type="text" /></td>
</tr>
<tr>
<td style="height: 33px; width: 178px;">Email</td>
<td style="height: 33px"><input id="1026" name="1026" class="1026-required" type="text" /></td>
</tr>
<tr>
<td style="width: 178px">Product Title</td>
<td><input id="1089" name="1089" type="text" /></td>
</tr>
<tr>
<td style="width: 178px">Product Type</td>
<td>
<select id="1169" name="1169">
<option value="">Select</option>
<option value="Cars">Cars</option>
<option value="Boats">Boats</option>
<option value="Planes">Planes</option>
</select>
</td>
</tr>
<tr>
<td>
<button id="btnCatchReqFlds" type="button" name="btn">Check Required Fields</button>
</td>
</tr>
</table>
</fieldset>
<fieldset id="section-11" name="section-11">
<legend style="color:fuchsia; font-weight:bold">Car Details Section</legend>
<table cellpadding="2" style="width: 100%">
<tr>
<td style="width: 334px; height: 35px"><label>Size:*</label></td>
<td style="height: 35px"><input id="1245" class="1245-required" name="1245" type="text" /></td>
</tr>
<tr>
<td style="height: 35px; width: 334px">Color:*</td>
<td style="height: 35px">
<select id="1433" class="1433-required" name="1433">
<option value="Orange">Orange</option>
<option value="Blank">Blank</option>
<option value="Green">Green</option>
</select>
</td>
</tr>
<tr>
<td style="width: 334px">Description:</td>
<td>
<textarea id="1290" name="1290" rows="2" style="width: 433px"></textarea>
</td>
</tr>
</table>
</fieldset>
<fieldset id="section-12" name="section-12">
<legend style="color:fuchsia; font-weight:bold">Plane Details Section</legend>
<table cellpadding="2" style="width: 100%">
<tr>
<td style="width: 334px; height: 35px"><label>Size:</label></td>
<td style="height: 35px"><input id="1245" name="1245" type="text" /></td>
</tr>
<tr>
<td style="height: 35px; width: 334px">Color*:</td>
<td style="height: 35px">
<input type="checkbox" name="1433[]" id="1433[]" value"Orange" class="1433[]-required"/>Orange
<input type="checkbox" name="1433[]" id="1433[]" value"Blue" class="1433[]-required"/>Blue
<input type="checkbox" name="1433[]" id="1433[]" value"Green" class="1433[]-required"/>Green
</td>
</tr>
<tr>
<td style="width: 334px">Description:</td>
<td>
<textarea id="1290" name="1290" rows="2" style="width: 433px"></textarea>
</td>
</tr>
</table>
</fieldset>
<fieldset id="section-13" name="section-13">
<legend style="color:fuchsia; font-weight:bold">Boat Details Section</legend>
<table cellpadding="2" style="width: 100%">
<tr>
<td style="width: 334px; height: 35px"><label>Size:</label></td>
<td style="height: 35px"><input id="1245" name="1245" type="text" /></td>
</tr>
<tr>
<td style="height: 35px; width: 334px">Color:*</td>
<td style="height: 35px">
<input type="radio" name="1834" id="1834" value="None" class="valuetext" class="1834-required">None
<input type="radio" name="1834" id="1834" value="All" class="valuetext" class="1834-required">All
</td>
</tr>
<tr>
<td style="width: 334px">Description:</td>
<td>
<textarea id="1290" name="1290" rows="2" style="width: 433px"></textarea>
</td>
</tr>
</table>
</fieldset>
<br>
<fieldset id="section-1011" name="section-1011">
<legend style="color:green; font-weight:bold">Misc Info Section</legend>
<table cellpadding="2" style="width: 100%">
<tr>
<td style="width: 334px; height: 35px"><label>Size:</label></td>
<td style="height: 35px"><input id="1301" name="1301" type="text" /></td>
</tr>
<tr>
<td style="height: 35px; width: 334px">Color:</td>
<td style="height: 35px">
<select id="1302" name="1302">
<option value="Orange">Orange</option>
<option value="Blank">Blank</option>
<option value="Green">Green</option>
</select>
</td>
</tr>
<tr>
<td style="width: 334px">Description:</td>
<td>
<textarea id="1303" name="1303" rows="2" style="width: 433px"></textarea>
</td>
</tr>
</table>
</fieldset>
</form>
我的jquery代码:&gt;&gt;
$("#section-11,#section-12,#section-13,#section-1011").hide();
var projtype = new Array(
{value : 'Cars', sect_id : 'fieldset#section-11'},
{value : 'Planes', sect_id : 'fieldset#section-12'},
{value : 'Boats', sect_id : 'fieldset#section-13'}
);
$("select#1169").on('change',function () {
var thisVal = $(this).val();
var sect_id ="";
//$('fieldset[id!="mainSection"]').hide();
$(projtype).each(function() {
$(this.sect_id).hide();
if(this.value == thisVal) {
$(this.sect_id).show();
}
});
});
$("#btnCatchReqFlds").on('click', function() {
$("#holdErrMsg").empty();
var requiredButEmpty = $("fieldset:visible").find('input[class*="-required"], select[class*="-required"]').filter(function() {
return $.trim($(this).val()) === "";
});
if (requiredButEmpty.length) {
requiredButEmpty.each(function () {
$("#holdErrMsg").append("Please fill in the " + this.name + "<br />");
});
}
return !requiredButEmpty.length;
});
答案 0 :(得分:0)
您不检查单选按钮值是否为为空,您检查用户是否已检查。如果已选中其中任何一个按钮,您还需要检查同一组中的所有单选按钮(具有相同的名称)。在这种情况下,我会对列表进行预过滤,以避免每个必需的单选按钮出现重复的错误消息。
Implemented in a fork of your jsfiddle
$("#btnCatchReqFlds").on('click', function() {
$("#holdErrMsg").empty();
var distinctRadiobuttonGroups = [];
var requiredButEmpty = $("fieldset:visible").find('input[class*="-required"], select[class*="-required"]').filter(function(index) {
// Pre-filter to keep only one radio button per radio button group
var $this = $(this);
if ($this.is(":radio")) {
var name = $this.attr("name");
if (distinctRadiobuttonGroups[name]) {
// Non-unique, filter out
return false;
}
distinctRadiobuttonGroups[name] = true;
return true;
}
// Keep all non-radio buttons
return true;
}).filter(function() {
var $this = $(this);
if ($this.is(":checkbox")) {
// Required check boxes must be checked
return !$this.is(":checked");
} else if ($this.is(":radio")) {
var foundCheckedRadio = false,
radioButtonGroupSelector = ":radio[name=" + $this.attr("name") + "]";
$this.parents("form").find(radioButtonGroupSelector).each(function() {
// Check if this radio button was checked
// (could be optimized to return when finding the first checked radio button)
foundCheckedRadio = foundCheckedRadio || $(this).is(":checked");
});
// The result after checking all radio buttons in the same group
return !foundCheckedRadio;
} else {
// Evertything not a checkbox or radio button
return $.trim($this.val()) === "";
}
});
if (requiredButEmpty.length) {
requiredButEmpty.each(function() {
$("#holdErrMsg").append("Please fill in the " + this.name + "<br />");
});
}
return !requiredButEmpty.length;
});
提供的HTML也存在一些问题;例如,复选框值的不同元素和输入(不允许)和缺少=
字符的重复ID。
普通复选框更容易,除非你有一些逻辑,至少有一个必须被检查。我的修复没有考虑到这一点,这就是为什么你会得到三个飞机验证错误消息。