我有一个使用get变量构造的网址,例如
location.href = this.href +'?type='+ escape($('#type_of_station').html()) + '&count='+ escape($('.number_changer').attr("id").slice(-1));
这给了我一个像下面的网址
http://posnation.com/pre_config/pre_config_step_2.php?type=Grocery&count=2
在下一页上,我通过PHP捕获变量
<p id="type_of_station" class="text left"><?php $_GET['type'] != "" ? print str_replace("_", " ", $_GET['type']) : print "Food Pos System" ?></p>
这很好用,但网址有点难看.有没有一种方法可以隐藏它,并且在下一页上仍然可以使用get变量
解决方法:
使url看起来不错是一回事.
隐藏URL数据是另一回事.永远不要隐藏任何东西.否则您将使您的网站无法使用.