selform.js

来自「Harvestman-最新版本」· JavaScript 代码 · 共 22 行

JS
22
字号
function selectiveTotal(form, which){        var total = 0;        for(var j = 0; j < form.elements.length; j++){                var cid = form.elements[j].id.toString();                if ((form.elements[j].type == "text") &&                     (form.elements[j].value.length > 0) &&                     (cid.charAt(cid.length-1) == which) &&                     (cid != "total" + which))                {                        total += parseInt(form.elements[j].value);                }        }        document.getElementById("total" + which).value = total;        totalTheTotals("1","2","3");}function totalTheTotals(a, b, c){        var total = parseInt(document.getElementById("total" + a).value) + parseInt(document.getElementById("total" + b).value);        document.getElementById("total" + c).value = total;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?