111 votes

changer l'url sans rediriger en utilisant javascript

Je voudrais savoir comment changer l'url sans redirection comme sur ce site web http://dekho.com.pk/ads-in-lahore Quand on clique sur les onglets, l'URL change mais la page ne se recharge pas complètement. Il y a d'autres questions sur stackoverflow indiquant que ce n'est pas possible mais j'aimerais savoir comment les sites mentionnés ci-dessus l'ont mis en œuvre. Merci

219voto

Mihai Iorga Points 23686

Utiliser pushState :

window.history.pushState("", "", '/newpage');

10voto

Jared Farrish Points 26391

Si vous voulez savoir exactement ce qu'ils utilisent, c'est Backbone.js (voir les lignes 4574 y 4981 ). Tout est mélangé avec le code source de jQuery, mais voici les lignes pertinentes du fichier annoté Backbone.Router source page de documentation :

En contrôles de soutien :

  this._wantsPushState = !!this.options.pushState;
  this._hasPushState = !!(this.options.pushState && window.history && window.history.pushState);

En route fonction :

route: function(route, name, callback) {
    Backbone.history || (Backbone.history = new History);

    if (!_.isRegExp(route)) route = this._routeToRegExp(route);

    if (!callback) callback = this[name];

    Backbone.history.route(route, _.bind(function(fragment) {
        var args = this._extractParameters(route, fragment);

        callback && callback.apply(this, args);

        this.trigger.apply(this, ['route:' + name].concat(args));

        Backbone.history.trigger('route', this, name, args);
    }, this));

    return this;
},

Choisir entre hachage et poussée de l'état s :

// Depending on whether we're using pushState or hashes, and whether
// 'onhashchange' is supported, determine how we check the URL state.
if (this._hasPushState) {
    Backbone.$(window).bind('popstate', this.checkUrl);
} else if (this._wantsHashChange && ('onhashchange' in window) && !oldIE) {
    Backbone.$(window).bind('hashchange', this.checkUrl);
} else if (this._wantsHashChange) {
    this._checkUrlInterval = setInterval(this.checkUrl, this.interval);
}​

Plus d'informations sur ce qu'ils font :

// If we've started off with a route from a `pushState`-enabled browser,
// but we're currently in a browser that doesn't support it...
if (this._wantsHashChange && this._wantsPushState && !this._hasPushState && !atRoot) {
    this.fragment = this.getFragment(null, true);
    this.location.replace(this.root + this.location.search + '#' + this.fragment);

    // Return immediately as browser will do redirect to new url
    return true;

    // Or if we've started out with a hash-based route, but we're currently
    // in a browser where it could be `pushState`-based instead...
} else if (this._wantsPushState && this._hasPushState && atRoot && loc.hash) {
    this.fragment = this.getHash().replace(routeStripper, '');
    this.history.replaceState({}, document.title, this.root + this.fragment);
}

if (!this.options.silent) return this.loadUrl();

Et le coup de grâce :

// If pushState is available, we use it to set the fragment as a real URL.
if (this._hasPushState) {
     this.history[options.replace ? 'replaceState' : 'pushState']({}, document.title, url);
}

Vous devriez lire le lien Backbone.js annoté que j'ai fourni en haut de page. C'est très instructif.

Prograide.com

Prograide est une communauté de développeurs qui cherche à élargir la connaissance de la programmation au-delà de l'anglais.
Pour cela nous avons les plus grands doutes résolus en français et vous pouvez aussi poser vos propres questions ou résoudre celles des autres.

Powered by:

X