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