web-dev-qa-db-fra.com

Comment obtenir l'identifiant de fragment (valeur après hash #) à partir d'une URL?

Exemple:

www.site.com/index.php#hello

Avec jQuery, je veux mettre la valeur hello dans une variable:

var type = …
193
cppit

Pas besoin de jQuery

var type = window.location.hash.substr(1);
554
Musa

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);

VOIR LA DÉMO

34
Ahsan Khurshid
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

12
Talha

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

6
JoyGuru

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

4

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  
});
4
kmario23

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);
2
Ro Hit