你好朋友我有兩個框架,每個框架都有一個html表格,應該重定向到其他頁面,但這裏的問題是,當任何頁面重定向目標頁面只能看到只有特定幀.... 當任何框架的形式提交如何完全重定向到整個頁面...從整個頁面的html框架重定向
我使用
<frameset cols="40%,60%">
<frame src="pmode.html" frameborder="0">
<frame src="create.html"frameborder="0">
</frameset>
你好朋友我有兩個框架,每個框架都有一個html表格,應該重定向到其他頁面,但這裏的問題是,當任何頁面重定向目標頁面只能看到只有特定幀.... 當任何框架的形式提交如何完全重定向到整個頁面...從整個頁面的html框架重定向
我使用
<frameset cols="40%,60%">
<frame src="pmode.html" frameborder="0">
<frame src="create.html"frameborder="0">
</frameset>
爲此,我們有target
屬性的形式:
<form action="newpage.html" target="_top">
這意味着:「此表單的目標是最上面的頁面,而不是當前的框架」。
您也可以嘗試... <形式行動=「newpage.html」目標=「_空白」> ,如果你想在新標籤中打開頁面
只求把目標=「_空白」在另一頁的按鈕鏈接(pmode.html或create.html)