我想將一個數組傳遞給一個函數並對其進行處理,但是我擔心,發生錯誤會說board_pt是未定義的。問題是什麼?這是代碼:javascript函數參數
function set_boardPoint(board_pt,turn)
{
var no = board_pt.number-1;
board[no].row = board_pt.row;
board[no].col = board_pt.col;
board[no].x = board_pt.x;
board[no].y = board_pt.y;
board[no].value = turn;
board[no].number = board_pt.number;
}
板是已經定義
你能告訴你如何調用set_boardPoint嗎? – 2011-02-04 08:42:06
我建議你專注於錯誤信息。如果board_pt是'未定義的',那麼它可能意味着它說的是什麼。 – 2011-02-04 08:44:37