Để chuyển hướng đến một trang web khác bằng JavaScript, hãy sử dụng window.location và đề cập đến liên kết trang web, nơi bạn muốn chuyển hướng.
<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>