Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

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>