我正在尝试使用以下代码本地提交表单:
$('#invoices-bundle').submit(function(e) {
e.preventDefault(); // don't submit multiple times
this.submit();
$.post('php/seller/invoice/invoice_print_batch.php', function(data){
$('#added-invoices').html(data);
});// use the native submit method of the form element
});
在提交()之后;我想用我的 PHP 脚本的内容填充 DOM。奇怪的是,我第一次提交表单时没有填充 DOM,但第二次和之后的每次都没有填充。
不知道为什么会这样!有什么建议么?
谢谢!