方法: 1. 構文 "window.framename.location.href="address?key=" key"; を使用して、あるフレームから別のフレームにジャンプします。 2. 現在のページを更新します ("window. 現在のページ page) name.location.href='住所'"。
このチュートリアルの動作環境: Windows7 システム、JavaScript バージョン 1.8.5、Dell G3 コンピューター。
1. フレームから name="main" のフレームにジャンプします。
<script language="javascript"> var key = document.getElementById(" ## ").value; window.parent.main .location.href= "welcome.en ? key=" + key; </script>
2.ContentList 現在のページの iframe 名
window.ContentList.location.href = '../welcome.en';
拡張情報:
フレームの外にジャンプします。親ページ。
jsp:
<script language="javascript"> window.parent.frames.location.href="../welcome.en" </script>
java:
PrintWriter out = response.getWriter(); out.write("<script type='text/javascript'>window.parent.frames.location.href = '../welcome.en';</script>"); return;
[推奨学習: javascript 上級チュートリアル]
以上がJavaScriptで目的のページにジャンプする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。