网上找来的资料,做下整理 //模拟表单post提交,且打开新页面跳转function post(URL, PARAMS) {var temp_form = document.createElement("form");temp_form .action = URL;temp_form .target = "_blank";temp_form .method = "post";temp_form .style.display = "none";for (var x in PARAMS) {var opt = document.createElement("textarea");opt.name = x;opt.value = PARAMS[x];temp_form .appendChild(opt);}document.body.appendChild(temp_form);temp_form .submit(); } // 使用方法url表示请求地址,后面传参类似ajax// post('url',{id:id,name:name});