此代碼將提交一個表單到一個新的窗口提交表單新窗口,而不地址欄
<form action="..." method="post" target="_new">
但有可能使新的窗口開始沒有地址欄,並確定其大小?
此代碼將提交一個表單到一個新的窗口提交表單新窗口,而不地址欄
<form action="..." method="post" target="_new">
但有可能使新的窗口開始沒有地址欄,並確定其大小?
使用Javascript:
<a href="link" onClick="javascript:window.open('http://link','Windows','width=650,height=350,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,directories=no,status=no');return false")">Link text</a>
您可以在行動網頁上提頭標記。 這是你在找什麼?
header(「location:something.php」);
我認爲你需要使用JavaScript。檢查出這個線程中的第二個答案:http://stackoverflow.com/questions/726761/javascript-open-in-a-new-window-not-tab – dewd