如何使用JavaScript检查URL中的#hash?
2022-08-29 22:15:48
我有一些jQuery / JavaScript代码,我只想在URL中有哈希()锚点链接时运行。如何使用JavaScript检查此字符?我需要一个简单的包罗万象的测试来检测这样的URL:#
example.com/page.html#anchor
example.com/page.html#anotheranchor
基本上是这样的:
if (thereIsAHashInTheUrl) {
do this;
} else {
do this;
}