如何使用地址栏变量传递哈希标记(#)?searchTerm =#JustKeepGoing

时间:2014-03-16 19:28:09

标签: php url

如何通过网站网址传递包含哈希标记的变量? 我目前将此信息传递到URL中,但无法在新页面上回显,因为“#”用于锚定/跳转到特定页面区域。

我可以告诉它忽略散列标记并回显它后面的内容吗?

当前网址:

http://localhost/social3/search/?searchTerm=#JustKeepGoing

回应内容的当前方式:

$searchTerm = $_GET["searchTerm"];
echo $searchTerm;  

1 个答案:

答案 0 :(得分:0)

你必须对其进行url编码:

http://host.com/social3/search/?searchTerm=%23JustKeepGoing

不确定您的浏览器是否会解释它,但值得尝试。