我现在想把三个文本框放入网页,输入2个数字后旧能显示出结果来.(通过公式)
问题是怎么取得TEXT的值.不管用ASP还是JAVASCRIPT都可以.
拜托各位高手了.公式如下:
2*INT((I20*25.4-I21*2)/(D24+H24-0.1*2))
[CODE]<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <meta name="GENERATOR" content="Microsoft FrontPage 4.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <title>New Page 1</title> <script language=javascript> function show() { document.form1.T3.value = eval(document.form1.T1.value) + eval(document.form1.T2.value) } </script> </head> <body> <form name="form1" method="POST" > <p><input type="text" name="T1" size="20"> <input type="text" name="T2" size="20"> <input type="text" name="T3" size="20"> <input type="button" value="提交" name="B1" onClick="show()"> <input type="reset" value="全部重写" name="B2"> </p> </form> </body> </html>[/CODE]
这里就用了 + 号 其他的自己编吧
[此贴子已经被作者于2005-4-7 9:59:14编辑过]
[CODE]<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <meta name="GENERATOR" content="Microsoft FrontPage 4.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <title>New Page 1</title> <script language=javascript> function show() { document.form1.T3.value = eval(document.form1.T1.value) + eval(document.form1.T2.value) } </script> </head> <body> <form name="form1" method="POST" > <p><input type="text" name="T1" size="20"> <input type="text" name="T2" size="20"> <input type="text" name="T3" size="20"> <input type="button" value="提交" name="B1" onClick="show()"> <input type="reset" value="全部重写" name="B2"> </p> </form> </body> </html>[/CODE]
这里就用了 + 号 其他的自己编吧
上面的代码在Microsoft的IE中运行正常,但是在腾讯公司的TT浏览器里运行时却得不到结果!!!! 我还经常碰到这样的情况,真不知是怎么回事????