หากต้องการเปลี่ยนเส้นทางไปยังหน้าเว็บอื่นใน JavaScript ให้ใช้ window.location และระบุลิงก์ของเว็บไซต์ที่คุณต้องการเปลี่ยนเส้นทาง
<html> <body> <p>Redirecting to another website</p> <script> window.location = "https://www.qries.com"; </script> <p>This page will redirect to Qries.com</p> </body> </html>