我从选定的复选框中传递了一些带有 ID 的值
我收集要发布的数组中的值但是我也想对标题中的值求和,但我无法做到这一点......
我哪里错了?我知道它在调用返回的变量,但我不知道如何获取它
function doAlloMath(){
var sum=0;
alert($("input[name=alloInv]:checked").map(function () {return this.value;}).get().join(","));
alert($("input[name=alloInv]:checked").map(function () {return this.title;}).get().join(","));
alert($("input[name=alloInv]:checked").each(function (a,b) {sum += parseFloat ($(this.title)); return sum;}).get());
}