✔ 最佳答案
注意:input button 那行超長,不要折斷。
<html>
<body>
<form>
1:<input type=checkbox name=t_1>100
2:<input type=checkbox name=t_2>100
3:<input type=checkbox name=t_3>90
4:<input type=checkbox name=t_4>50<br>
<input id=GT style="width:150px;">
<input type=button value="recal" onclick="GT.value=(t_1.checked?100:0)+(t_2.checked?100:0)+(t_3.checked?90:0)+(t_4.checked?50:0)">
</form>
</body>
</html>
請來測試
http://w2.hkmalls.com/rc/box.htm
2009-05-28 18:08:25 補充:
function check(FF)
{ FF.GT.value = (FF.t_1.checked?100:0)+
(FF.t_2.checked?100:0)+
(FF.t_3.checked?90:0)+
(FF.t_4.checked?50:0)
}
<input type=button value="recal" onclick="check(this.form)">