我正在尝试在 javascript 中使用 URL 中的锚标记来显示/隐藏 html 页面中的特定 div。这是一个相同的例子。
<div style="display:none;" id="test_one">Display this box when one</div>
<div style="display:none;" id="test_two">Display this box when two</div>
现在,我想要的是,当 URL 为http://www.example.com/this_page.html#test_one时,我想显示第一个 div(id 为 test_one)。同样,当 URL 为http://www.example.com/this_page.html#test_two时,我想显示第二个 div(id 为 test_two)。
任何人都可以请给我任何指示吗?
提前感谢