可能重复:
How can you check for a #hash in a URL using JavaScript?
如果URL以某个哈希标记结尾,我使用以下命令执行一些JavaScript。如果URL不以哈希标记结尾,我如何克服类似的条件?谢谢
if (window.location.href.match('#hash'))
{
//do stuff
}
答案 0 :(得分:4)
https://developer.mozilla.org/en/DOM/window.location
if(window.location.hash) {
//hash exists
} else {
//no hash
}