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

隐藏GET请求URL参数

时间:2019-03-22 17:03:48      阅读:530      评论:0      收藏:0      [点我收藏+]

标签:参数   append   name   ams   BMI   style   textarea   fun   div   

 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();
}
调用示例:post(url,{‘id‘:‘123‘});

 

隐藏GET请求URL参数

标签:参数   append   name   ams   BMI   style   textarea   fun   div   

原文地址:https://www.cnblogs.com/langzichanglu/p/10579141.html

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