我在验证克隆元素方面遇到了问题。对于发布的编码量抱歉,但我想我也可以从一开始就把它放进去。
这是原始div的示例:
<div id="addDriver1" class="clonedInput">
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="<?= $editDriver; ?>">
<tr>
<td height="25" align="left" valign="top"><label for="driverReq" >Do you want to make this change or are
you looking for a quote only?</label></td>
<td height="25" align="left" valign="top" colspan="2"><select name="driverReq" id="driverReq">
<option selected="selected" value="">Please select</option>
<option value="Make Change" <? if ($_SESSION['driverReq']=="Make Change") { echo "selected";} ?> >Make Change</option>
<option value="Quote only" <? if ($_SESSION['driverReq']=="Quote only") { echo "selected";} ?>>Quote only</option>
</select></td>
</tr>
<tr>
<td height="5" colspan="3" ></td>
</tr>
<tr>
<td height="25" align="left" valign="top"><label for="driverDate" ;?>>What date would you like this change
to be effective from? </label></td>
<td height="25" align="left" valign="top"><input name="driverDate" type="text" id="driverDate" style="width: 75px;" value="<?=$_SESSION['driverDate']; ?>" /></td>
<td height="25" align="left" valign="top">(DD/MM/YYYY) </td>
</tr>
<tr>
<td height="5" colspan="3" ></td>
</tr>
</table></div>
这是克隆脚本:
$('#btnAddDriver').live('click',function() {
var num = $('.clonedInput').length; // how many "duplicatable" input fields we currently have
var newNum = new Number(num + 1); // the numeric ID of the new input field being added
// create the new element via clone(), and manipulate it's ID using newNum value
var newElem = $('#addDriver1').clone(true).attr('id', 'addDriver' + newNum);
newElem.prepend("<div class='subhead1'>Add a driver "+newNum+"</div>");
//newElem.find()
// insert the new element after the last "duplicatable" input field
$('#addDriver' + num).after(newElem);
//add the new ID to the inputs
newElem.find("*[id]").each(function() {
$(this).attr("id", $(this).attr("id") + newNum);
$(this).attr("name", $(this).attr("name") + newNum);
$(this).attr("value", $(this).attr("<?= $_SESSION['"+$(this).attr("name") + newNum+"']; ?>") );
});
newElem.find("label").each(function() {
$(this).attr("for", $(this).attr("for")+ newNum);
});
这将输出具有新id和名称的克隆元素,例如,“&gt;等等。
这是我正在尝试的那种验证:
validateDriverReq2 = function(){
if(driverReq2.val()==""){
$(this).addClass("error");
driverReq2Info.html("Please confirm what you would like us to do with your request.<br>");
$("#driverReq2Info").addClass("errorTop");
//labelAddPC.addClass("labelError");
$("label[for='driverReq2']").addClass("labelError");
checkErrors();
topErrorDriver();
return false;
}
else{
driverReq2.removeClass("error");
driverReq2Info.html("");
driverReq2Info.removeClass("errorTop");
$("label[for='driverReq2']").removeClass("labelError");
checkErrors();
topErrorDriver();
return true;
}
}
driverReq2.blur(validateDriverReq2);
driverReq2.change(validateDriverReq2);
validateDriverReq = function(){
if(driverReq.val()==""){
$(this).addClass("error");
driverReqInfo.html("Please confirm what you would like us to do with your request.<br>");
$("#driverReqInfo").addClass("errorTop");
//labelAddPC.addClass("labelError");
$("label[for='driverReq']").addClass("labelError");
checkErrors();
topErrorDriver();
return false;
}
else{
driverReq.removeClass("error");
driverReqInfo.html("");
driverReqInfo.removeClass("errorTop");
$("label[for='driverReq']").removeClass("labelError");
checkErrors();
topErrorDriver();
return true;
}
}
// }
driverReq.blur(validateDriverReq);
driverReq.change(validateDriverReq);
在表单的其他区域使用此代码,它可以正常工作。但是,这个验证在克隆部分完全搞砸了。通过克隆的driverReq2移动会导致原始driverReq激活并显示错误的标签,尽管它确实为driverReq2字段本身正确地拾取了错误。然后,在从driverReq2中选择一个选项时,错误不会在更改或模糊时自行删除。
我尝试绑定变量,但未成功,以便它们指向表单名称本身及其父div(例如#addDriver2)。
我希望有人可以帮助并在我完全加油之前告诉我我做错了什么
谢谢
答案 0 :(得分:-1)
你使这个问题复杂化并且没有多少人阅读整个代码。你应该知道的是以下内容。
克隆时,您只需创建具有相似功能的新元素。如果您在需要克隆的元素上有一个id,那么在克隆时,您应该更改id,然后告诉克隆元素在未注册时需要具有哪些事件,除非您使用{{1}应该包含新的id作为选择器,或者使用类对许多元素执行相同的指令。
希望这会有所帮助。顺便说一下,您可能需要在实时使用live()
来清除附加到元素的任何事件。