Answers:
不需要jQuery
var type = window.location.hash.substr(1);
.slice(1)
而不是使用.substr(1)
它来提供适度的性能提升,尽管这对现实生活没有影响。
您可以使用以下代码来做到这一点:
var url = "www.site.com/index.php#hello";
var hash = url.substring(url.indexOf('#')+1);
alert(hash);
var url ='www.site.com/index.php#hello';
var type = url.split('#');
var hash = '';
if(type.length > 1)
hash = type[1];
alert(hash);
jsfiddle上的工作演示
if
语句可以缩短为var hash = type[1] || "";
。
使用以下JavaScript从网址获取哈希(#)之后的值。您不需要为此使用jQuery。
var hash = location.hash.substr(1);
我从这里获得了这段代码和教程- 如何使用JavaScript从URL获取哈希值
我有运行时的URL,下面给出了正确的答案:
let url = "www.site.com/index.php#hello";
alert(url.split('#')[1]);
希望这可以帮助
很简单 试试下面的代码
$(document).ready(function(){
var hashValue = location.hash.replace(/^#/, '');
//do something with the value here
});
根据AK的代码,这是一个辅助函数。JS小提琴这里(http://jsfiddle.net/M5vsL/1/)...
// Helper Method Defined Here.
(function (helper, $) {
// This is now a utility function to "Get the Document Hash"
helper.getDocumentHash = function (urlString) {
var hashValue = "";
if (urlString.indexOf('#') != -1) {
hashValue = urlString.substring(parseInt(urlString.indexOf('#')) + 1);
}
return hashValue;
};
})(this.helper = this.helper || {}, jQuery);