que maneira de recarregar a página atual (usando um botão) você prefere?
1 <input type="button" value="Reload" onClick="history.go(0)">
2 <input type="button" value="Reload" onClick="location.reload(true)">
3 <input type="button" value="Reload" onClick="window.location.reload(true)">
4 <input type="button" value="Reload" onClick="window.location.href=window.location.href">
5 <input type="button" value="Reload" onClick="document.location.reload(true)">
6 <input type="button" value="Reload" onClick="document.location.href=document.location.href">
Como o URL da página muda frequentemente, AFAIK uma 'função de fallback' como
<a href="urlOfCurrentPage.html" onclick="window.location.reload(true);return false;">Reload</a>
não vai funcionar para mim, certo?
javascript
reload
Mel
fonte
fonte
*.location.reload()
como argumento apenas para especificar se o cache deve ser ignorado. stackoverflow.com/questions/10876244/…