我对 JS 很陌生,对一些看起来很简单的东西有疑问。我正在尝试编写代码,以便如果页面在 url 的末尾带有 # 加载,例如。www.example.com#hashtag,然后会显示一个 div,如果它没有 # 则不会显示该 div。
我的代码:
JS:
<script type="text/javascript">
if(window.location.hash) {
document.getElementById("displaydiv").style.display = "block";
}
</script>
HTML:
<div id="displaydiv" style="display: none; height: 100px; width: 100px;
background-color: red;"></div>