我使这更糟糕,更难以实现,但我无法理解这一点。
我需要为我们正在使用的特殊客户端应用程序进行一些自定义验证编码,所以不能使用jquery val插件
我想要的只是一个复选框和无线电验证功能,与我在文本域验证中的基本相同。我的复选框和无线电验证代码非常糟糕,打破了原来正在运行的文本字段验证
我已经删除了我所遇到的非工作代码灾难 - 有人可以告诉我如何使用它吗?
使用我的jsfiddle /下面的代码结构:当你点击“btnCatchReqFlds”按钮时,我希望它运行文本字段检查,然后选中复选框,无线电检查并显示所有需要但尚未填写的字段-in /检查/选择
查看 jsfiddle ,您将看到它仅对文本字段验证有效。我只需要在复选框/单选按钮中加入相同的功能/检查。
我认为我很接近,更接近。我已经更新了代码,我知道这不是很好的编码,但是按照婴儿步骤来获取我需要的代码。下面的代码现在检查必需但空的文本和检查/无线电字段。现在的问题是,代码抓取了正确的字段,但是“.not(':checked');”工作不正常。如果我检查其中一个无线电/复选框,我会得到相同的返回值。我做错了什么: return $(this).not(':checked');
jquery的:
$("#btnCatchReqFlds").on('click', function()
{
$("#holdErrMsg").empty();
$("#holdErrMsg_checkRadios").empty();
var requiredButEmpty = $("fieldset:visible").find('input[class*="-required"], select[class*="-required"]').filter(function()
{
return $.trim($(this).val()) === "";
});
var chk_requiredButEmpty = $("fieldset:visible").find(":input:checkbox[class*='-required'],:input:radio[class*='-required']").filter(function()
{
return $(this).not(':checked');
});
if (requiredButEmpty.length)
{
requiredButEmpty.each(function ()
{
$("#holdErrMsg").append("Please fill in the " + this.name + "<br />");
});
}
if (chk_requiredButEmpty.length)
{
chk_requiredButEmpty.each(function ()
{
$("#holdErrMsg_checkRadios").append("Please fill in the " + this.name + "<br />");
});
}
return !requiredButEmpty.length;
return !chk_requiredButEmpty.length;
});
HTML :
<form method="post" action="">
<div id="holdErrMsg"></div>
<div id="holdErrMsg_checkRadios"></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<span style="color: red">*</span></td>
<td style="height: 33px"><input id="1125" name="1125" class="1125-required" type="text" /> - 1125</td>
</tr>
<tr>
<td style="height: 33px; width: 178px;">Email<span style="color: red">*</span></td>
<td style="height: 33px"><input id="1026" name="1026" class="1026-required" type="text" /> - 1126</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>
<!-- Car Section -->
<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:<span style="color: red">*</span></label></td>
<td style="height: 35px"><input id="1245" class="1245-required" name="1245" type="text" /> - 1245</td>
</tr>
<tr>
<td style="height: 35px; width: 334px">Color:<span style="color: red">*</span></td>
<td style="height: 35px">
<select id="1433" class="1433-required" name="1433">
<option value="">Select</option>
<option value="Orange">Orange</option>
<option value="Blank">Blank</option>
<option value="Green">Green</option>
</select>
- 1433
</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>
<!-- Plane Section -->
<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<span style="color: red">*</span>:</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
| 1302
</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>
<!-- Boat Section -->
<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:<span style="color: red">*</span></td>
<td style="height: 35px">
<input type="radio" name="1834" id="1834" value="None" class="valuetext 1834-required" />None
<input type="radio" name="1834" id="1834" value="All" class="valuetext 1834-required" />All
- 1834
</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 />
<!-- Misc. Info Section -->
<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>
答案 0 :(得分:0)
根据您最近的更新,您需要做的就是检查是否检查了所有兄弟姐妹,然后从它返回到变量的元素数组中抓取一个。如果在开始附加错误消息之前插入下面的代码,它应该按照您想要的方式工作。这是一个更新的小提琴http://jsfiddle.net/mPXAw/7/
var chk_requiredButEmpty = $("fieldset:visible").find(":checkbox[class*='-required'],:radio[class*='-required']").filter(function()
{
if(!$(this).siblings().is(':checked')){
return !$(this).is(':checked');
}
});
chk_requiredButEmpty = chk_requiredButEmpty.eq(0);
答案 1 :(得分:0)
我做错了什么:
return $(this).not(':checked');
您假设.not
是.is
的倒数,但事实并非如此。 .not
不返回一个布尔值,它返回一个包含与选择器不匹配的元素的jQuery对象。
您应该使用:
!$(this).is(":checked")
确定是否未检查某些内容。甚至更好:
!this.checked
更新了小提琴: http://jsfiddle.net/VSx6M/
其他一些说明:
return
语句。第二个是无法访问的,因为return
会立即将程序流返回给调用函数。[]
)表示法优先于new Array
。*我知道你不能使用jQuery验证,但我强烈建议尝试。