回 帖 发 新 帖 刷新版面

主题:[讨论]注册代码咋写呀~~~~~求助

就是那种你写好信息,然后点注册,能弹出个对话框,上面显示刚刚你填写的内容。那怎么弄呀,俺很菜不会,希望各位能帮下忙,小女子这相有礼了[em3]

回复列表 (共5个回复)

沙发

可以用request.getParameter()来获得对应的值!

板凳


<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>&nbsp;</p>
  <p> 
    <input type="submit" value="提交">
    <input type="reset" value="全部重写">
  </p>
</form>


[color=FF0000]点提交按钮后出现的信息都挨在一块了,怎么改改呀???[/color]

3 楼

把程序对应部分改为如下:

 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 楼

3楼能具体解释下你写的代码的意思吗

5 楼


用<p>也可以的是吧,一时咋给忘了呢,猪脑子啊~~~~~[em10]  谢谢了哦~!

我来回复

您尚未登录,请登录后再回复。点此登录或注册