小编典典

如何从URL获取片段标识符(value after hash #)?

javascript

例:

www.site.com/index.php#hello

使用jQuery,我想将值hello放在变量中:

var type = …

阅读 540

收藏
2020-05-01

共1个答案

小编典典

不需要jQuery

var type = window.location.hash.substr(1);
2020-05-01