如果表格不是采用的INPUT文本框,怎样实现数据更新了??

解决方案 »

  1.   

    <form>
    <input type="text" name="t1" onkeyup="t2.value=this.value">
    <input type="text" name="t2" onkeyup="t1.value=this.value">
    </form>
      

  2.   

    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    </head><body bgcolor="#FFFFFF" text="#000000">
    <form name="form1" method="post" action="">
      <input type="text" onChange="form1.input2.value=form1.input1.value" name="input1">
      <input type="text" onchange="form1.input2.value=form1.input1.value" name="input2">
    </form>
    </body>
    </html>
    另外,我个人做了一个javascript版的报表软件,有兴趣的可以留下邮箱!我把演示版发给
    各位,不过我们已经和公司签订了保密协议,仅供技术研究,未经我允许,请别随意泄露。谢谢!
    E-mail:[email protected]
      

  3.   

    看看你的报表软件:
    [email protected]