js에서 새 페이지로 이동하는 방법: 1. 이동하려면 location.href="새 페이지 URL"을 사용하세요. 2. 이동하려면 location.replace("새 페이지 URL")를 사용하세요. "새 페이지 URL")으로 이동합니다.
방법 1: location.href 사용
구문:
location.href="URL"
Example
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> </head> <body> <p>这是<i>location.href</i>方式的示例</p> <button onclick="myFunc()">点击这里</button> <!--重定向到其他网页的脚本--> <script> function myFunc() { window.location.href="https://www.php.cn"; } </script> </body> </html>
방법 2: location.replace() 사용
구문:
location.replace("URL")
예 : 다른 웹 페이지로 이동하려면 location.replace() 메소드를 사용하세요
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> </head> <body> <p>这是<i>location.replace()</i>方式的示例</p> <button onclick="myFunc()">点击这里</button> <!--重定向到其他网页的脚本--> <script> function myFunc() { location.replace("https://www.php.cn"); } </script> </body> </html>
방법 3: location.sign() 사용
구문:
location.assign("URL")
예: location.sign() 메소드를 사용하여 다른 페이지로 이동 웹 페이지
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> </head> <body> <p>这是<i>location.assign()</i>方式的示例</p> <button onclick="myFunc()">点击这里</button> <!--重定向到其他网页的脚本--> <script> function myFunc() { location.assign("https://www.php.cn"); } </script> </body> </html>
추천 튜토리얼: "JavaScript Video Tutorial"
위 내용은 js에서 새 페이지로 이동하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!