Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个像这样的网址:
http://localhost/myproject/contact-us#feedback
我想将完整的 URL 存储在一个变量中,包括#feedback.
#feedback
这个怎么做???
您可以使用 JavaScript 读取 URL #feedback,并通过 Ajax 将其存储在您的数据库中。
得到了答案:
使用 JS 获取 URL,例如:
var url = location.href;
谢谢大家的建议:)