用JAVASCRIPT.怎么实现啊。
<input name=t1>
<input name=t2>
第二文本框自动显示第一文本框输入的内容 

解决方案 »

  1.   

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    <script type="text/javascript">
    window.onload = function() {
    document.getElementById('t1').onkeyup = function() {
    document.getElementById('t2').value = this.value;
    }
    }
    </script>
    </head><body>
    <input type="text" id="t1" name="t1" />
    <input type="text" id="t2" name="t2" />
    </body>
    </html>