签署后获取字符串#

时间:2014-12-25 10:38:55

标签: jquery match

如何在符号#:

之后获取字符串
// get current url
var url      = window.location.href;
// output: //http://www.test.com/Tests/pagination.php?page=4#tab2
alert(url);

如何获得名称tab2,它位于#

之后

提前致谢

2 个答案:

答案 0 :(得分:2)

使用此代码:

window.location.hash
  

返回URL的锚点部分。假设当前的URL是   http://www.example.com/test.htm#part2:#part2

     

Window.location只读属性返回一个Location对象,其中包含有关文档当前位置的信息   虽然Window.location是一个只读的Location对象,但您也可以为其分配DOMString。这意味着您可以使用   在大多数情况下,就好像它是一个字符串一样:location =   'http://www.example.com'是location.href =的同义词   'http://www.example.com'。

更多阅读Here

答案 1 :(得分:2)

location.hash.replace("#","")

应该做的伎俩