我有2個數組。兩者都是文本字段。我想在TextField1上觸發一個按鍵時清除textfield2。我怎麼能在一個keyup函數中使用這兩個數組?在for循環中使用兩個數組
var showItem=['orange', 'beans', 'rose'];
var typeItem=['fruit', 'veggie', 'flower'];
我試過使用for循環,但沒有按預期工作。
for (i = 0; i < showItem.length; i++) {
$('#' + showItem[i]).keyup(function() {
console.log(typeItem[i]);
$('#' + typeItem[i]).text('');
});
}
當您運行的代碼,會發生什麼?您需要更好地定義「不按預期工作」的含義。 –