我在对象中有一些文本字段a1 b1 c1 d1 e1 f1 g1 h1 a2 b2 c2 ...
num = 97;
while (num <= 104) {
if (this[String.fromCharCode(num) + "1"].piece == wb1_txt) {
oldSquare = String.fromCharCode(num) + "1";
trace("oldSquare = ", oldSquare);
}
num = num + 1;
}
我想查找文本字段的位置。我该如何让它循环?
答案 0 :(得分:1)
以下代码将通过a1 b1 c1 d1 e1 f1 g1 h1 a2 b2 ... g8 h8
for( i=1; i<=8; i++){
for( num=97; num<105; num++){
sq = String.fromCharCode(num) + i;
trace( sq );
}
}