onhashchange
(attributo evento HTML) si attiva quando cambia l’hash dell’url.
tag |
---|
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
0 Comment