首页 > 编程 > JavaScript > 正文

js post提交调用方法

2019-11-20 21:07:34
字体:
来源:转载
供稿:网友
复制代码 代码如下:

function post(URL, PARAMS) {
var temp = document.createElement("form");
temp.action = URL;
temp.method = "post";
temp.style.display = "none";
for (var x in PARAMS) {
var opt = document.createElement("textarea");
opt.name = x;
opt.value = PARAMS[x];
temp.appendChild(opt);
}
document.body.appendChild(temp);
temp.submit();
}

//调用方法 如
post('pages/statisticsJsp/excel.action', {html :prnhtml,cm1:'sdsddsd',cm2:'haha'});
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表