자바스크립트에서 다른 웹페이지로 리디렉션하려면 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>
자바스크립트에서 다른 웹페이지로 리디렉션하려면 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>