其他窗口中的结果页面

时间:2010-05-17 10:44:55

标签: php javascript forms javascript-events

我有这个简单的形式:

<form method="post" action".">
<input type="text" name="title">
<input type="submit" name"send">
</form>

我希望当用户点击提交时,然后将打开另一个浏览器窗口并显示结果。有可能吗?

2 个答案:

答案 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>
on the pagetodisplay.php

extract($_POST);
echo $title;