简体   繁体   中英

JavaScript - Navigate to a Named Anchor

I have an named HTML anchor tag that works like a bookmark. This tag is defined as:

<a name="myLocation"></a>

I need to be able to jump to this link via JavaScript. How do I jump to a location in my HTML page from JavaScript?

Thank you!

Try:

window.location = window.location + "#myLocation";

Hope this helps.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM