저는 자바 스크립트와 초보 프로그래머가 처음이므로 대답하기가 쉽지 않을 수 있습니다. x 필드의 값을 반복하여 최종 필드의 합계를 표시하려면이 필드를 추가하고 싶습니다. 명시 적으로 각 필드를 호출하면이 함수를 수행 할 수 있지만이 필드를 유연하게 처리 할 수 있도록 추상화하려고합니다. 여기에 나와있는 예제 코드가 있습니다 (저에게는 효과가 없습니다). 내가 어디로 잘못 가고 있니?자바 스크립트를 사용하여 불확실한 수의 필드 추가하기
<html>
<head>
<script type="text/javascript">
function startAdd(){
interval = setInterval("addfields()",1);
}
function addfields(){
a = document.addition.total.value;
b = getElementByTagName("sum").value;
for (i=0; i<=b.length; i++){
a+=i;
}
return a;
}
function stopAdd(){
clearInterval(interval);
}
</script>
</head>
<body>
<form name="addition">
<input type="text" name="sum" onFocus="startAdd();" onBlur="stopAdd;">
+ <input type="text" name="sum" onFocus="startAdd();" onBlur="stopAdd;">
= <input type="text" name ="total">
</form>
</body>
</html>