猿问
如何从URL获取片段标识符(哈希号后的值)?
例:
www.site.com/index.php#hello
使用jQuery,我想将值hello放在变量中:
var type = …
沧海一幻觉
浏览 840
回答 4
4回答
jeck猫
不需要jQueryvar type = window.location.hash.substr(1);
0
0
0
拉丁的传说
使用以下JavaScript从URL获取哈希(#)之后的值。您不需要为此使用jQuery。var hash = location.hash.substr(1);
0
0
0
随时随地看视频
慕课网APP
相关分类
JavaScript
JQuery
我要回答