2011-10-08 10 views
6

Estoy estudiando Google Ajax Crawlable

Yo uso $(window) bind hashchange para controlar la carga de la página de ajax.

mi URL como:

allí tiene dos tipos de cambio

  1. domain.com/#!/apple&num=1 =>domain.com/#!/apple&num=2

  2. domain.com/#!/apple&num=1 =>domain.com/#!/banana&num=1

por lo cómo comprobar si $(window) bind hashchange cambió la parte hash de apple =>banana? Gracias.

$(window).bind('hashchange', function() { 
    // make a judge like if(){}else{} 
}); 
+0

El segundo hash actualizado no solo cambió el nombre de la fruta, sino también el número. –

Respuesta

13

Almacena el hash en una variable y actualiza la variable al final de la función. Considere:

(function(){ 
    var lastHash = location.hash; 
    $(window).bind('hashchange', function() { 
     var newHash = location.hash; 
     // Do something 
     var diff = compareHash(newHash, lastHash); 
     alert("Difference between old and new hash:\n"+diff[0]+"\n\n"+dif[1]); 

     //At the end of the func: 
     lastHash = newHash; 
    }); 

    function compareHash(current, previous){ 
     for(var i=0, len=Math.min(current.length, previous.length); i<len; i++){ 
      if(current.charAt(0) != previous.charAt(0)) break; 
     } 
     current = current.substr(i); 
     previous = previous.substr(i); 
     for(var i=0, len=Math.min(current.length, previous.length); i<len; i++){ 
      if(current.substr(-1) != previous.substr(-1)) break; 
     } 

     //Array: Current = New hash, previous = old hash 
     return [current, previous]; 
    } 
})() 
+0

qué gran trabajo. Gracias. – Giberno

3

Guardaría el hash original en una variable, y luego examinaría el nuevo hash para juzgar el cambio. Una vez hecho esto, configure el hash nuevo para que sea el original:

var originalHash = window.location.hash; 
$(window).bind('hashchange', function() { 
    var newHash = window.location.hash; 
    //do your stuff based on the comparison of newHash to originalHash 

    originalHash = newHash; 
}); 
+1

puedo detectar el cambio de (window.location) y manejarlo? (sin jquery) – BergP

Cuestiones relacionadas