我有这个简单的形式:
<form method="post" action".">
<input type="text" name="title">
<input type="submit" name"send">
</form>
我希望当用户点击提交时,然后将打开另一个浏览器窗口并显示结果。有可能吗?
答案 0 :(得分:2)
如果您只是需要打开一个新窗口:
<form method="post" action="..." target="_blank">
...
如果你想要一个弹出窗口或灯箱或任何脚本:
<form method="post" action="..." onsubmit="yourFunction()">
答案 1 :(得分:1)
使用此
<form method="post" action"thepagetodisplay.php">
<input type="text" name="title" id="title">
<input type="submit" name"send">
</form>
extract($_POST);
echo $title;