能不能实现在前三个框中输入数据第四个框中得到他们的和啊?
就是在前三个框中输入数字,不一定每个框中都有,而且数据类型我是定义为字符串,我要在前三个框中输入的所以数字都加起来,放到第四个框中,而且输入和相加是同时进行的,输入完毕,第四个框中显示的就是他们的和,这改怎么实现呢?
sub ss()
if form1.t1.value="" or not isnumeric(form1.t1.value) then form1.t1.value=0
if form1.t2.value="" or not isnumeric(form1.t2.value) then form1.t2.value=0
if form1.t3.value="" or not isnumeric(form1.t3.value) then form1.t3.value=0
if form1.t4.value="" or not isnumeric(form1.t4.value) then form1.t4.value=0
form1.t4.value=eval(form1.t1.value)+form1.t2.value+form1.t3.value
end sub
</script>
<form name="form1" method="post" action="">
<input name="t1" type="text" id="t1" value="0" size="10" onKeyUp="ss()">+
<input name="t2" type="text" id="t2" value="0" size="10" onKeyUp="ss()">+
<input name="t3" type="text" id="t3" value="0" size="10" onKeyUp="ss()">=
<input name="t4" type="text" id="t4" value="0" size="10" onKeyUp="ss()">
</form>[/CODE]
[此贴子已经被作者于2005-8-30 16:08:13编辑过]