隐藏GET请求URL参数
Posted langzichanglu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了隐藏GET请求URL参数相关的知识,希望对你有一定的参考价值。
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参数的主要内容,如果未能解决你的问题,请参考以下文章