[HTML] [attributo evento] onhashchange

onhashchange (attributo evento HTML) si attiva quando cambia l’hash dell’url.

tag

<body>

Sintassi

<body onhashchange = "[script]">

Esempi

<script>
function Funzione1() {
   location.hash = "nuovohash";
   var nuovoHash = location.hash;
   alert("Hash cambiato");
}
function Funzione2() {
   location.hash = "nuovohash";
   alert("L'hash ora è "+location.hash);
}
</script>
<body onhashchange="Funzione2()">
<button onclick="Funzione1()">Attiva meotodo</button>
</body>



Contenuti correlati

  • CSS
  • HTML
  • JavaScript
  • jQuery
  • PHP
  • SQL
  • WORDPRESS

Fonti esterne

attributi evento html, html

Related Articles

0 Comment

Rispondi