此代码有效,但在数组中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]);
}
}
});
}
答案 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