So springen Sie mit js zu einer neuen Seite: 1. Verwenden Sie location.href="new page URL", um zu springen. 2. Verwenden Sie location.replace ("new page URL"), um zu springen location.assign("neue Seiten-URL") zum Springen.
Methode 1: Location.href verwenden
Syntax:
location.href="URL"
Beispiel
<!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>
Methode 2: Verwenden Sie location.replace()
Syntax:
location.replace("URL")
Beispiel : Verwenden Sie die Methode location.replace(), um zu anderen Webseiten zu springen
<!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>
Methode 3: Verwenden Sie location.assign()
Syntax:
location.assign("URL")
Beispiel: Verwenden Sie die Methode location.assign(), um zu anderen Webseiten zu springen
<!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>
Empfohlenes Tutorial: „ JavaScript-Video-Tutorial》
Das obige ist der detaillierte Inhalt vonWie springe ich in js zu einer neuen Seite?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!