jquery 多父级祖先元素|多子级

需求:改变扣分时,自评得分变化

 jquery 多父级祖先元素|多子级_第1张图片

 扣分当前文本框的无限上级 的 兄弟 的无线子级 

//如果元素 类 包含扣分
                if ($that.hasClass("txtScoreLeader") || $that.hasClass("txtItemScoreSelf")) {
                    var sltmax = parseInt($that.attr("max"));
                    var sltmin = parseInt($that.attr("min"));
                    var parintval = parseInt(_val);
                    if ((parintval <= sltmax) && (sltmin <= parintval)) {
                        console.log('修改上级分');
                        // 获取两兄弟的父级
                        var tt = $that.parents(".Item_container");
                        if ($that.hasClass("txtScoreLeader"))
                            $(tt).find("label.Item_score_leader").text(sltmax - parintval);
                        else {
                            $(tt).find("label.Item_score_self").text(sltmax - parintval);
                            $(tt).find("input.Item_score_self").val(sltmax - parintval);
                            setTimeout(function () {
                                $(tt).find("input.Item_score_self").change();
                            }, 3000);
                        }
                    }
                    else {
                        console.log('修改大致' + sltmax);
                        $that.val(sltmax);
                        $that.change();
                        return;
                    }
                }

 

你可能感兴趣的:(jquery,前端,javascript)