如何製作例如www.example.com#test
?如何製作hashtag鏈接?
我知道如何使用交換機進行www.example.com?test=1
但我真的需要www.example.com#test
是否有可能使用$_GET
功能讓它做什麼?
如何製作例如www.example.com#test
?如何製作hashtag鏈接?
我知道如何使用交換機進行www.example.com?test=1
但我真的需要www.example.com#test
是否有可能使用$_GET
功能讓它做什麼?
http://www.w3.org/TR/WD-htmllink-970328
"URLs can also be used to name locations within HTML documents using the fragment identifier syntax, e.g.
See: <a href="#s3.2">section 3.2</a> for details.
...
<a name="s3.2">Section 3.2</a>The Bigger Picture"
我不是這個意思。在某些網站上可以使用#鏈接來顯示/執行以前隱藏/未執行的文本(或div)/代碼。 –
#信息永遠不會發送到服務器。所以你不能用PHP做任何事情。你可能可以讓它做一些Javascript(和AJAX,因此觸發PHP)。 – eatonphil
使用頁面片段來控制視圖狀態是他們使用客戶端MVVC框架的一個標誌。 – Orangepill
[這](http://stackoverflow.com/questions/2317508/php-get-value-from-url-after-sign/2317518#2317518)可以幫助你。 – SeanWM