for循环的最后一次迭代if(某事等于某事)

时间:2016-12-06 16:52:47

标签: javascript jquery

此代码有效,但在数组中Item === CheckId时给出了所有情况的结果。如何才能获得最后一次? (Item === CheckId).length导致未定义。此外,我尝试在if语句之外创建变量,并在if语句中增加它。但它只增加了一次。

        function updateDirections() {

                    $('.ui-selected').each(function(i, obj) {
                        textArea = $("#fname").val();
                        textArea = textArea.split(';');
                        //textArea.replace(/\(.+?,\ \{/, "");
                        //console.log((textArea[4].toLowerCase().indexOf(this.id) >= 0));
                        //textArea = textArea.map(function(w){ return +!!~this.id.indexOf(w) });
                        //console.log(obj.id);

                        Item = this.id;
                        var arrayLength = textArea.length;
                        for (var i = 0; i < arrayLength; i++) {
                            CheckId = textArea[i];
                            CheckId = CheckId.match(/\(.+?,\ \{/)
                            CheckId = String(CheckId).replace(/\(/g, "").replace(/,/g, "").replace(/ /g, "").replace(/\{/g, "");

                            if (Item === CheckId) {
                                console.log(textArea[i]);
                            }

                        }


                    });
                }

1 个答案:

答案 0 :(得分:1)

我不确定你想要实现什么,但如果你想要最后console.log的值,你确实可以使用一个变量:

Item = this.id;
var arrayLength = textArea.length,
    lastValue = null; // here is the variable
for (var i = 0; i < arrayLength; i++) {
    CheckId = textArea[i];
    CheckId = CheckId.match(/\(.+?,\ \{/)
    CheckId = String(CheckId).replace(/\(/g, "").replace(/,/g, "").replace(/ /g, "").replace(/\{/g, "");

    if (Item === CheckId) {
        lastValue = textArea[i];
    }

}
// do anything you want with lastValue