公告
财富商城
积分规则
提问
发文
2019-01-03 02:15发布
smile是对你的礼貌
Example:
www.site.com/index.php#hello
Using jQuery, I want to put the value hello in a variable:
hello
var type = …
No need for jQuery
var type = window.location.hash.substr(1);
var url ='www.site.com/index.php#hello'; var type = url.split('#'); var hash = ''; if(type.length > 1) hash = type[1]; alert(hash);
Working demo on jsfiddle
Use the following JavaScript to get the value after hash (#) from a URL. You don't need to use jQuery for that.
var hash = location.hash.substr(1);
I have got this code and tutorial from here - How to get hash value from URL using JavaScript
It's very easy. Try the below code
$(document).ready(function(){ var hashValue = location.hash; hashValue = hashValue.replace(/^#/, ''); //do something with the value here });
I had the URL from run time, below gave the correct answer:
let url = "www.site.com/index.php#hello"; alert(url.split('#')[1]);
hope this helps
You may do it by using following code:
var url = "www.site.com/index.php#hello"; var hash = url.substring(url.indexOf('#')+1); alert(hash);
SEE DEMO
最多设置5个标签!
No need for jQuery
Working demo on jsfiddle
Use the following JavaScript to get the value after hash (#) from a URL. You don't need to use jQuery for that.
I have got this code and tutorial from here - How to get hash value from URL using JavaScript
It's very easy. Try the below code
I had the URL from run time, below gave the correct answer:
hope this helps
You may do it by using following code:
SEE DEMO