评论

收藏

JS中使用post打开网页

网络安全 网络安全 发布于:2021-07-11 10:13 | 阅读数:560 | 评论:0

function postUrl(filed,value,url) {
var doc = document.createElement("form");
doc.action = url;
doc.method = "post";
doc.style.display = "none";
var opt = document.createElement("textarea");
opt.name = filed;
opt.value = value;
doc.appendChild(opt);
document.body.appendChild(doc);
doc.submit();
  });
  
关注下面的标签,发现更多相似文章