码迷,mamicode.com
首页 > Web开发 > 详细

js post提交

时间:2017-10-18 23:05:40      阅读:140      评论:0      收藏:0      [点我收藏+]

标签: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.appendChild(temp);
  temp.submit();
  return temp;
}
function onFdo(text) {
var url = "./";
var arr = new Array();
arr["from"] = "restart";
arr["msg"]  =  text;
post(url,arr);
}


js post提交

标签:js post

原文地址:http://livestreaming.blog.51cto.com/3135568/1973892

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!