例子:
www.site.com/index.php#hello
使用jQuery,我想把值hello放在一个变量中:
var type = …
例子:
www.site.com/index.php#hello
使用jQuery,我想把值hello放在一个变量中:
var type = …
当前回答
不需要jQuery
var type = window.location.hash.substr(1);
由于String.prototype.substr已弃用,请使用substring代替。
var type = window.location.hash.substring(1);
其他回答
我有运行时的URL,下面给出了正确的答案:
let url = "www.site.com/index.php#hello";
alert(url.split('#')[1]);
希望这能有所帮助
var url ='www.site.com/index.php#hello';
var type = url.split('#');
var hash = '';
if(type.length > 1)
hash = type[1];
alert(hash);
jsfiddle的工作演示
你可以使用以下代码:
var url = "www.site.com/index.php#hello";
var hash = url.substring(url.indexOf('#')+1);
alert(hash);
看到演示
获取当前文档位置的片段
var hash = window.location.hash;
从字符串中获取片段
/ /绝对 var url =新的url ('https://example.com/path/index.html#hash'); console.log (url.hash); //相对(第二个参数是必需的,使用任何有效的URL基) var url2 = new URL('/path/index.html#hash2', 'http://example'); console.log (url2.hash);
这很简单。试试下面的代码
$(document).ready(function(){
var hashValue = location.hash.replace(/^#/, '');
//do something with the value here
});