我在尝试使用 jquery 执行动态加载的表单时遇到了一些问题。这是我的代码:
$(this).ajaxSubmit({
url: '/postform1.php',
type: 'post',
//target: '#preview',
success: function(msg) {
var s = msg + '<form name="sr" id="sr" action="postform.php" method="post"><input type="text" /></form>';
$('#preview').html(s);
$.getJSON("/postform1.php", function(data){
var counter = 0;
if(data) {
$.each(data, function(i, val) {
var newTextBoxDiv = $(document.createElement('div')).attr("id", val);
newTextBoxDiv.after().html('<label>' + i + ' : </label>' + '<input type="text" name="' + i + '" id="' + i + '" value="' + val + '" >');
newTextBoxDiv.appendTo("#sr");
counter++;
});
}
});
}
});
我最初是从 postform1.php 呼应整个表单,但发现表单没有提交。我也不知道这是否是正确的方法,但我想我会试一试。如果有人有任何想法,很高兴收到您的来信。