怎么实现在一个文本框里写一个数子在另一个框框里显示出结果_百度知 ...
发布网友
发布时间:2024-10-23 12:59
我来回答
共1个回答
热心网友
时间:2024-11-01 12:21
对不起,你的代码有点乱,我重新弄了一下,不知你是不是这个意思:
<html>
<head>
<title>无标题文档</title>
<script language="VBScript" type="text/VBScript">
sub sumit()
aa=0
if document.form1.checkbox.checked=true then
aa=aa+document.form1.textarea.value
end if
if document.form1.checkbox2.checked=true then
aa=aa+document.form1.textarea2.value
end if
if document.form1.checkbox3.checked=true then
aa=aa+document.form1.textarea3.value
end if
document.form1.textarea6.value=aa
end sub
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<p>
<input name="checkbox" type="checkbox" onclick="sumit()" value="checkbox" />
<input name="textarea" type="text" value="100" />
<input type="checkbox" name="checkbox2" onclick="sumit()" value="checkbox" />
<input name="textarea2" type="text" value="100" />
<input type="checkbox" name="checkbox3" onclick="sumit()" value="checkbox">
<input name="textarea3" type="text" value="100">
</p>
<p>
<input name="textarea6" type="text" value="" />
<input type="submit" name="Submit" value="提交" />
</p>
</form>
</body>
</html>
另外,这种功能客户端脚本就能完成,不用提交表单的.
试一下吧,祝你成功!
热心网友
时间:2024-11-01 12:24
对不起,你的代码有点乱,我重新弄了一下,不知你是不是这个意思:
<html>
<head>
<title>无标题文档</title>
<script language="VBScript" type="text/VBScript">
sub sumit()
aa=0
if document.form1.checkbox.checked=true then
aa=aa+document.form1.textarea.value
end if
if document.form1.checkbox2.checked=true then
aa=aa+document.form1.textarea2.value
end if
if document.form1.checkbox3.checked=true then
aa=aa+document.form1.textarea3.value
end if
document.form1.textarea6.value=aa
end sub
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<p>
<input name="checkbox" type="checkbox" onclick="sumit()" value="checkbox" />
<input name="textarea" type="text" value="100" />
<input type="checkbox" name="checkbox2" onclick="sumit()" value="checkbox" />
<input name="textarea2" type="text" value="100" />
<input type="checkbox" name="checkbox3" onclick="sumit()" value="checkbox">
<input name="textarea3" type="text" value="100">
</p>
<p>
<input name="textarea6" type="text" value="" />
<input type="submit" name="Submit" value="提交" />
</p>
</form>
</body>
</html>
另外,这种功能客户端脚本就能完成,不用提交表单的.
试一下吧,祝你成功!