主题:[讨论]注册代码咋写呀~~~~~求助
咕噜咕噜飞
[专家分:0] 发布于 2006-05-03 08:47:00
就是那种你写好信息,然后点注册,能弹出个对话框,上面显示刚刚你填写的内容。那怎么弄呀,俺很菜不会,希望各位能帮下忙,小女子这相有礼了[em3]
回复列表 (共5个回复)
沙发
小青苹果 [专家分:170] 发布于 2006-05-03 10:08:00
可以用request.getParameter()来获得对应的值!
板凳
咕噜咕噜飞 [专家分:0] 发布于 2006-05-04 15:45:00
<script language="JavaScript">
var win = null;
function show_choose()
{
var new_html = '<br><button onclick="window.location=\'about:OK\'">确定</button><button onclick="opener.focus();window.close()">取消</button>'
if(win==null||win.closed)
{
win = window.open("about:blank","choose_window","width=600,height=600,scrolling=yes");
}
else
{
win.document.close();
}
win.document.write(document.getElementById("the_text").value);
win.document.write(document.getElementById("11_text").value);
win.document.write(document.getElementById("12_text").value+new_html);
}
</script>
<form method="POST" action="javascript:show_choose()">
<p>姓名
<input type="text" id="the_text" size="20">
<p>年龄
<input name="text" id="11_text" size="20">
</p>
<p>性别
<input type="text" id="12_text" size="20">
</p>
<p> </p>
<p>
<input type="submit" value="提交">
<input type="reset" value="全部重写">
</p>
</form>
[color=FF0000]点提交按钮后出现的信息都挨在一块了,怎么改改呀???[/color]
3 楼
小青苹果 [专家分:170] 发布于 2006-05-06 02:02:00
把程序对应部分改为如下:
win.document.write(document.getElementById("the_text").value+"<br>");
win.document.write(document.getElementById("11_text").value+"<br>");
win.document.write(document.getElementById("12_text").value+new_html);
4 楼
tianshi777777 [专家分:90] 发布于 2006-05-09 10:17:00
3楼能具体解释下你写的代码的意思吗
5 楼
咕噜咕噜飞 [专家分:0] 发布于 2006-05-12 22:46:00
用<p>也可以的是吧,一时咋给忘了呢,猪脑子啊~~~~~[em10] 谢谢了哦~!
我来回复