<script>
$(document).ready(function() {
$('#addButton').click(function() {
var newHTML = "";
newHTML += '<p><label> Answer Type</label><select name="ans_type[]"><option value="Image">Image</option><option value="Text">Text</option></select></p><p class="text"><label> Enter Answer</label><textarea rows="5" cols="50" name="ans_text[]"></textarea></p><p class="image"><label> Upload Image</label> <br/><input type="file" name="ans_image[]" class="btn"/></p>';
$('#sandbox').append(newHTML);
});
$(document).on("change", "select[name*='ans_type']", function() {
var answer = $(this).val();
if (answer == "Image") {
$(".text").hide();
$(".image").show();
} else {
$(".text").show();
$(".image").hide();
}
});
});
<div id="sandbox">
<p>
<label> Answer Type</label>
<select name="ans_type[]">
<option value="Image">Image</option>
<option value="Text">Text</option>
</select>
</p>
<p class="text">
<label> Enter Answer</label>
<textarea rows="5" cols="50" name="ans_text[]"></textarea>
</p>
<p class="image">
<label> Upload Image</label> <br/>
<input type="file" name="ans_image[]" class="btn"/>
</p>
<p>
<label> Is Correct Answer</label>
<input type="checkbox" name="isCorrectAnswer[]"/>
</p>
单击“添加”按钮后,文本框和下拉列表以及上载图像字段将复制一个。但是当我点击提交按钮时,添加的文本框和下拉列表图像上传消失了,我怎么能修改,所以它会在页面刷新后保留?
答案 0 :(得分:0)
尝试为Cookie使用特殊的jQuery插件:https://github.com/carhartl/jquery-cookie
这里有一个关于cookies和jQuery的回答问题: How do I set/unset cookie with jQuery?