6

簡単な機能があります:

selected_row = []; // global scope

function toggleRowNumber(rowIndex) {
  if(selected_row[rowIndex]) selected_row.splice(rowIndex, 1);
  else selected_row[rowIndex] = 1; 
}

利用方法

toggleRowNumber(50000); // click the row - write the index
toggleRowNumber(50000); // click the row again - remove the inxed

alert(selected_row.length);

50001 OK

嬉しい機能!

検索/ループせずにインデックスを直接書き込み/読み取りする方法はありますか? そして、上記のようなこの巨大な偉業はありません。

ありがとう。

4

1 に答える 1