Salin kode kode sebagai berikut:
Posting fungsi (url, params) {
var test = document.createElement ("Form");
temp.action = url;
temp.method = "post";
temp.style.display = "none";
untuk (var x di params) {
var opt = document.createElement ("TextArea");
Opt.name = x;
opt.value = params [x];
temp.appendchild (opt);
}
document.body.appendchild (temp);
temp.submit ();
}
// Metode panggilan seperti
Post ('halaman/statisticsjsp/excel.action', {html: prnhtml, cm1: 'sdsddsd', cm2: 'haha'});