我有以下脚本,它使用其他输入元素的值动态构建文本字段。
该值显示在屏幕上,但在开发工具中检查时,它不会插入value=""
。我需要将值插入为value=""
,以便可以保留表单数据。
$(document).on('click', 'button', function(event) {
$("fieldset").append($('<input>').prop('type', 'text').val($('#entry').val()));
});
答案 0 :(得分:2)
答案 1 :(得分:2)
$(document).on('click', 'button', function(event) {
$("fieldset").append($("input[type = 'text']")).val($('#entry').val());
});
希望这会对你有所帮助。