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.
所以我有一个页面有多个 div 可以被用户切换为可见/不可见。
然后我有另一个页面,我想链接到上述页面中的特定内容。如何将 javascript 切换代码与链接一起传递,以便它显示正确的 div,而不仅仅是默认视图。
您可以使用像 site.com/page.html#div1 这样的 url 哈希
然后使用 javascript 解析哈希并决定要显示的 div
var hash = window.location.hash; var selectedDiv = hash.split('#')[1]; //Then show selectedDiv