使用Javascript如何检查当前URL是否包含哈希值?
在测试页面中,我想添加一个Javascript代码进行打印:
<p>yes, there is a hash here</p>
如果存在哈希(当前页面http://www.example.com/test/#abc)或:
<p>no, there is no hash here</p>
如果哈希不存在(当前页面http://www.example.com/test/)。
答案 0 :(得分:0)
这很简单
if(window.location.hash) {
//# in URL
}