从jQuery中的URL抓取#id

时间:2017-02-07 13:23:37

标签: javascript php jquery html css

我有一个像http://localhost/sites/fh/index.php#second这样的网址。我想从URL端获取id并将其存储在变量容器中以检入jquery中的else语句。我怎么能这样做?

1 个答案:

答案 0 :(得分:5)

Window是一个全局javascript对象,

使用window.location.hash获取哈希值,如果没有哈希值,它将返回null。

var hashValue=window.location.hash;
console.log(hashValue);