方法:1、、從一個框架跳到另一個框架中,語法「window.框架名稱.location.href="地址?key=" key」;2、刷新當前頁,「window.當前頁頁名.location.href='地址'”。
本教學操作環境:windows7系統、javascript1.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如何跳頁target的詳細內容。更多資訊請關注PHP中文網其他相關文章!