欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

URL参数过长时post 跳转的方法(form替换location.href)

程序员文章站 2022-04-21 13:25:26
...

 

在页面跳转时,我们时常用 window.location.href  的方法,如下:

window.location.href = 'monitor/queryalready_count?param_string='+param_string;

注意:window.location.href 的跳转是 get 的跳转方式

 

但是当参数param_string 过长时,比如参数字符串达到2K以上的长度,get跳转显然不可能了,就要使用form表单的形式实现post的方式跳转,可以在js中用以下方法实现:

 

document.write("<form action='monitor/queryalready_count' method='post' name='count_form' style='display:none'>");
document.write("<input type='hidden' name='param_string' value='"+param_string+"'");
document.write("</form>");
document.count_form.submit();