js ページジャンプ方法: 1. "location.href="URL"" を使用します; 2. "location.replace("URL")" を使用します; 3. "location.assign("URL" ) を使用します"; 4. "window.open("URL")" を使用します。
このチュートリアルの動作環境: Windows7 システム、JavaScript バージョン 1.8.5、Dell G3 コンピューター。
JavaScript を使用してページ ジャンプを実装する方法:
1. location.href 属性を使用して他の Web ページにジャンプします
構文:
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="//m.sbmmt.com"; } </script> </body> </html>
2. location.replace() メソッドを使用して他の Web ページにジャンプします
文法:
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("//m.sbmmt.com"); } </script> </body> </html>
[推奨学習: javascript 上級チュートリアル]
3. location.assign () メソッドを使用して他の Web ページにジャンプします
構文:
location.assign("URL")
例:
<!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("//m.sbmmt.com"); } </script> </body> </html>
4. window.open を使用します。 () 他の Web ページにジャンプするメソッド
文法:
window.open("URL");
例:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> </head> <body> <p>这是<i>window.open()</i>方式的示例</p> <button onclick="myFunc()">点击这里</button> <!--重定向到其他网页的脚本--> <script> function myFunc() { window.open("//m.sbmmt.com"); } </script> </body> </html>
プログラミング関連の知識の詳細については、次のサイトを参照してください: Programmingビデオ###! !
以上がJavaScriptでページジャンプを実装する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。