Exemple:
www.site.com/index.php#hello
Avec jQuery, je veux mettre la valeur hello
dans une variable:
var type = …
Pas besoin de jQuery
var type = window.location.hash.substr(1);
Vous pouvez le faire en utilisant le code suivant:
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);
Démo de travail sur jsfiddle
Utilisez le code JavaScript suivant pour obtenir la valeur après hash (#) à partir d'une URL. Vous n'avez pas besoin d'utiliser jQuery pour cela.
var hash = location.hash.substr(1);
J'ai ce code et ce tutoriel ici - Comment obtenir une valeur de hachage à partir d'une URL en utilisant JavaScript
J'ai eu l'URL de l'exécution, ci-dessous a donné la bonne réponse:
let url = "www.site.com/index.php#hello";
alert(url.split('#')[1]);
j'espère que cela t'aides
C'est très facile. Essayez le code ci-dessous
$(document).ready(function(){
var hashValue = location.hash;
hashValue = hashValue.replace(/^#/, '');
//do something with the value here
});
Basé sur le code de A.K, voici une fonction d'assistance. JS Fiddle Here ( 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);