我在 7、8 和 9 之后的 IE 中遇到问题都给我这个问题。但是 IE 7 和所有其他浏览器都不会注意到。
在我的表单中,我动态克隆了DIV
我拥有的第一个,这给了我一个带有克隆字段的新 div,这些字段是字段数组,如下所示name="myfield[]"
。
当我在 IE 8 和 9 中提交时,它只是返回它,就好像数组中只有一个元素而不是我克隆的许多元素一样。
这是 HTML 和 JS 的完整形式:
<p><strong>Choose the number of certificates you would like:</strong></p>
<label><input name="type" value="1" checked="checked" type="radio" onclick="oneCert();" checked /> $25 for one (1) certificate</label><br>
<label><input name="type" value="3" type="radio" onclick="threeCerts();" /> $50 for three (3) certificates</label><br>
<label><input name="type" value="5" type="radio" onclick="fiveCerts();" /> $75 for five (5) certificates</label>
<br><br>
<p>A personal message for each selection is optional and must be 20 words or less.</p>
<p><i>If you would like to purchase more than five (5) certificates, please select the $75 for five (5) certificates option and you will be able to add two (2) certificates for $25.</i></p>
<div id="mainForm">
<div id="people" style="border: 2px solid #000; padding: 10px; margin: 5px;">
Please enter Teacher or Staff Member’s First and Last Name:<br />
First and Last Name of Person: <input name="person[]" value="" style="margin: 5px;" type="text" /><br />
<div class="error-message-person"></div>
Teacher/Staff School: <input name="school[]" value="" style="margin: 5px;" type="text" /><br />
<div class="error-message-school"></div>
Student's Full Name: <input name="student[]" value="" style="margin: 5px;" type="text" /><br />
<div class="error-message-student"></div>
Parent(s) Full Name(s): <input name="parents[]" value="" style="margin: 5px;" type="text" /><br />
<div class="error-message-parents"></div>
Personal message to teacher or staff member:<br />
<textarea name="pmes[]" cols="40" rows="3" maxlength="200"></textarea><br />
</div>
</div>
<input value="Order Now" type="submit" />
<script>
function cloner () {
jQuery('#people').clone().appendTo('#mainForm').attr('class', 'people').removeAttr('id');
jQuery('.people:last').children('input[name="person[]"]').val('').parent()
.children('input[name="student[]"]').val('').parent()
.children('input[name="school[]"]').val('').parent()
.children('input[name="parents[]"]').val('');
jQuery('#mainForm').html(jQuery('#mainForm').html());
}
function addInd () {
jQuery('#mytext').remove();
cloner();
cloner();
jQuery('#mainForm').append('<div id="mytext">Need more? Add 2 more for $25 by clicking <a href="#" onclick="addInd(); return false;">here</a>.</div>');
}
function threeCerts () {
while(jQuery('.people').length < 2) {
cloner();
}
while(jQuery('.people').length > 2) {
jQuery('.people:last').remove();
}
jQuery('#mytext').remove();
}
function fiveCerts () {
while(jQuery('.people').length < 4) {
cloner();
}
while(jQuery('.people').length > 4) {
jQuery('.people:last').remove();
}
jQuery('#mytext').remove();
jQuery('#mainForm').append('<div id="mytext">Need more? Add 2 more for $25 by clicking <a href="#" onclick="addInd(); return false;">here</a>.</div>');
jQuery('.people:last div').css('display', 'block');
}
function oneCert () {
if(jQuery('.people').length > 1) {
jQuery('.people').each(function(index) {
this.remove();
});
}
jQuery('#mytext').remove();
}
</script>
如您所见,我尝试使用html()
命令将 DOM 刷新innerHTML
从自身更改为自身,但这也不起作用。这个html()
技巧在让 IE7 工作时对我有用,但 IE 9 和 8 仍然不接受动态添加的字段,或者在这种情况下是克隆的字段。
我也尝试将html()
呼叫从 DIV ID 更改为表单 ID,但仍然没有成功。
我还尝试在按钮和函数上调用 an alert()
,onSubmit
认为cloner()
这可能会迫使 IE 刷新 DOM。但也不起作用。
IE 8 和 9 中总是返回的数组是:
Array ( [type] => 3 [person] => Array ( [0] => ) [school] => Array ( [0] => ) [student] => Array ( [0] => ) [parents] => Array ( [0] => ) [pmes] => Array ( [0] => ) [04a9ffd12221f8353baf957d190ee2e6] => 1 )
无论我选择什么,理论上如果我选择选项 2 或 3,我应该在每个数组中获得更多,它在 IE 7 和 Chrome、Opera、FF 等中运行良好。