我試圖通過代碼創建並提交表單。下面有什麼問題?jQuery創建並動態提交表單
$('#btnPrintInvoicePerFile').on('click', function (event) {
event.preventDefault(); //stop link default
var componentInvoiceId = EberlsComponentInvoiceForm.componentInvoice.Id;
console.log(componentInvoiceId);
$('<form>', {
"id": "getInvoiceImage",
"html": '<input type="text" id="componentInvoicId" name="componentInvoicId" value="' + componentInvoiceId + '" />',
"action": window.siteRoot + 'ComponentInvoice/GetInvoiceImage/'
}).submit();
});
你可能想在jQuery的。員額http://api.jquery.com/jQuery.post/看看吧。這可能更接近你正在尋找的東西。 – 2013-02-12 16:05:11
「下面有什麼問題?」我不知道,你有什麼錯誤?什麼不是你認爲應該發生的事情? – j08691 2013-02-12 16:06:57