设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 59|回复: 3
打印 上一主题 下一主题

[求助]怎样相加

[复制链接]
跳转到指定楼层
1#
发表于 2009-12-27 00:12:26 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
请教各位高手,以下程序怎么写
下面的复框也要选择相加,选择性可多可少,也可不选,也可全选,
选好和填写好表单就可以按确定按钮
得到总数
这个很急用的,我须要帮忙各位。

<script language="javascript">
function BtnOK_Click()
{
var Sum=0;
for(var i=0;i<this.selField.length;i++)
{
if(this.selField[i].checked)
Sum+=parseInt(this.selField[i].value);
}
alert("总和为"+Sum);
}
</script>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><form name="form1" method="post" action="">
<table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<td>表单1:
<input name="aa" type="text" id="aa" value="50" size="10">
表单2:
<input name="bb" type="text" id="bb" value="50" size="10"></td>
</tr>
<tr>
<td><input type="checkbox" name="selField" value="50">a1
<input type="checkbox" name="selField" value="50">a2
<input type="checkbox" name="selField" value="50">a3
<input type="checkbox" name="selField" value="50">a4
<input type="checkbox" name="selField" value="50">a5
</td>
</tr>
<tr>
<td>总数:
<input name="sum1" type="text" size="20"></td>
</tr>
<tr>
<td><input type="button" name=BtnOK value="确定" onClick="BtnOK_Click();" ></td>
</tr>
</table>
</form></td>
</tr>
</table>
2#
发表于 2009-12-27 00:12:32 | 只看该作者
做了个加FORM的假的
呵呵

<script language="javascript">
function BtnOK_Click()
{
var Sum=0;
for(var i=0;i<5;i++)
{
if(form1.selField[i].checked)
Sum+=parseInt(form1.selField[i].value);
form1.sum1.value=Sum
}

}
</script>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><form name="form1" method="post" action="">
<table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<td>表单1:
<input name="aa" type="text" id="aa" value="50" size="10">
表单2:
<input name="bb" type="text" id="bb" value="50" size="10"></td>
</tr>
<tr>
<td>
<script language="javascript">
for (j=1;j<=5;j++)
{
document.write("<input type='checkbox' name='selField'"+j+" value='50'>a"+j)
}

</script>

</td>
</tr>
<tr>
<td>总数:
<input name="sum1" type="text" size="20"></td>
</tr>
<tr>
<td><input type="button" name=BtnOK value="确定" onClick="BtnOK_Click();" ></td>
</tr>
</table>
</form></td>
</tr>
</table>
回复 支持 反对

使用道具 举报

3#
发表于 2009-12-27 00:12:38 | 只看该作者
把&lt;form name="form1" method="post" action=""&gt;&lt;/form&gt;去掉,就可以了。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 09:23 , Processed in 0.124084 second(s), 10 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表