文件名称:js post提交调用方法
文件大小:15KB
文件格式:PDF
更新时间:2024-02-09 13:22:06
js js代码 post
代码如下: 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.append