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.
假设我在不同页面的某处有一个锚点:
<A NAME="blah">
在我当前所在的页面上,我想在那个不同的页面上去那个锚点,同时还传递一个 GET 参数,例如:
<A HREF="otherpage.htm#blah?data=1234">Good Stuff!</A>
这似乎对我不起作用。它加载页面并传递变量但不转到锚点。我已经搜索了关于锚标记的示例,其中有很多,但没有人谈论在 URL 中传递参数的同时跳转到页面中的锚点。
书签总是放在最后。
<A HREF="otherpage.htm?data=1234#blah">Good Stuff!</A>