新しいページにジャンプする JS メソッド: 1. location.href="新しいページ URL" を使用してジャンプします; 2. location.replace("新しいページ URL") を使用してジャンプします; 3. location を使用します.assign("新しいページの URL") でジャンプします。
#方法 1: location.href を使用する
location.href="URL"
<!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")
<!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.assign()## を使用します# 構文:
location.assign("URL")
例: location.assign() メソッドを使用して他の Web ページにジャンプします
<!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ビデオチュートリアル以上がjsで新しいページにジャンプするにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。