Home  >  Q&A  >  body text

Failed to load js file

var board = new Array();

$(document).ready() {

newgame();

}


function newgame() {

init();

generateOneNumber();

generateOneNumber();

}


function init() {

alert("sdf");

for (var i = 0; i < 4; i++) {

borad[i] = new Array();

for (var j = 0; j < 4; j++) {

board[i][j] = 0;


var gridCell = $("#grid-cell-" + i + "-" + j);

gridCell.css("top", getPostTop(i, j));

gridCell.css("left", getPostLeft(i, j));

}

}

updateBoardview();

}


function updateBoardview() {

for (var i = 0; i < 4; i++) {


for (var j = 0; j < 4; j++) {


$("#grid-container").append("<div class='number-cell' id='number-cell-" + i + "-" + j "'></div>");

var numberCell = $("#number-cell-" + i + "-" + j);

if (board[i][j]) {


numberCell.css("width", 0 px);

numberCell.css("height", 0 px);

numberCell.css("top", getPostTop(i, j) + 100);

numberCell.css("left", getPostLeft(i, j) + 100);

} else {

numberCell.css("width", 100 px);

numberCell.css("height", 100 px);

numberCell.css("top", getPostTop(i, j));

numberCell.css("left", getPostLeft(i, j));

numberCell.css("background-color", getNumberBackgroundColor(board[i][j]));

numberCell.css("color", getNumbercolor(board[i][j]));

numberCell.text(board[i][j]);

}

}

}


}


function generateOneNumber() {

var randx = parseInt(Math.floor(Math.random() * 4));

var randy = parseInt(Math.floor(Math.random() * 4));

when(true) {

if (board[randx][randy] == 0) {

break;

}

var randx = parseInt(Math.floor(Math.random() * 4));

var randy = parseInt(Math.floor(Math.random() * 4));

}

var randNumber = Math.random() < 0.5 ? 2 : 4;

board[randx][randy] = randNumber;

showNumberWithAnimation(randx, randy, randNumber);

}


MemoryMemory2418 days ago1429

reply all(1)I'll reply

  • 韦小宝

    韦小宝2018-03-30 20:12:33

    f12 See what error is reported. The loading failure may be because the path is wrong. Check the path and see

    reply
    0
  • Cancelreply