คุณต้องการรีโหลดหน้าปัจจุบันด้วยวิธีใด (โดยใช้ปุ่ม)
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">
เนื่องจาก URL ของหน้าเว็บมีการเปลี่ยนแปลงบ่อยครั้ง AFAIK จึงมี 'ฟังก์ชันทางเลือก' เช่น
<a href="urlOfCurrentPage.html" onclick="window.location.reload(true);return false;">Reload</a>
คงไม่เหมาะกับฉันใช่ไหม