求助..加法运算
<body>
请输入a:
<input type="text" name="a" size="6"/><p>
请输入b:
<input type="text" name="b" size="6" /><p>
<input type="button" name="button1" value="计算">
<script for="button1" event="onclick" language="vbscript">
n=a.value
m=b.value
t=n+m
msgbox t
</script>
</body>
为什么"t=n+m"不是把n和m相加.而是把两个值相连呢?即如果a.value=1,b.value=2
t=12,而不是t=3
[此贴子已经被作者于2007-4-7 8:42:25编辑过]