Re: [请益] Javascript 循环找ID

楼主: banana2014 (香蕉共和国)   2016-04-09 12:28:35
※ 引述《prince1983 (王子杀公主~)》之铭言:
: 网页里面的字段有6个ID分别为:tb1,tb2,tb3,tb4,tb5,sum
: 想要回圈的方式把5个tb值加起来...再用sum显示
: 请问我在javascript 里面跑回圈
: var sum =0;
: for(i=1;i<6;i++)
: {
: sum=sum+getElementById("tb".i).value;
: }
: document.getElementById("sum").value=sum;
: 却没有结果,请问是哪里错了吗??
<!DOCTYPE html>
<html>
<body>
<p id="demo">Click the button to see the result.</p>
<input id="tb1"><input id="tb2"><input id="tb3"><input id="tb4"><input id="tb5
">
<input id="sum">
<button onclick="myFunction()">See the Result</button>
<script>
function myFunction() {
var sum =0;
var i;
for(i=1;i<6;i++)
{
sum=sum+Number(document.getElementById("tb"+i).value);
}
document.getElementById("sum").value=sum;
}
</script>
</body>
</html>

Links booklink

Contact Us: admin [ a t ] ucptt.com