手足值计算
Sibiling value calculate
这段代码还有什么
var b1 = 2;
$(".column-1").each(function(i, val) {
if ($(this).text() == "2019") {
$(this).siblings('.column-3').each(function(){
if($(this).text() !==''){
var r +=parseInt($(this).text());
alert(r);
}
});
}
});
如何修复此代码中的错误
var b1 = 0;
$(".column-1").each(function(i, val) {
if ($(this).text() == "2019") {
var r=0;
$(this).siblings('.column-3').each(function() {
if($(this).text() !==''){
r +=parseInt($(this).text());
alert(r);
}
});
}
});
我解决了这个错误
这段代码还有什么
var b1 = 2;
$(".column-1").each(function(i, val) {
if ($(this).text() == "2019") {
$(this).siblings('.column-3').each(function(){
if($(this).text() !==''){
var r +=parseInt($(this).text());
alert(r);
}
});
}
});
如何修复此代码中的错误
var b1 = 0;
$(".column-1").each(function(i, val) {
if ($(this).text() == "2019") {
var r=0;
$(this).siblings('.column-3').each(function() {
if($(this).text() !==''){
r +=parseInt($(this).text());
alert(r);
}
});
}
});
我解决了这个错误