我有一个像http://localhost/sites/fh/index.php#second
这样的网址。我想从URL端获取id并将其存储在变量容器中以检入jquery中的else语句。我怎么能这样做?
答案 0 :(得分:5)
Window是一个全局javascript对象,
使用window.location.hash获取哈希值,如果没有哈希值,它将返回null。
var hashValue=window.location.hash;
console.log(hashValue);