继续获取:未捕获的SyntaxError:意外的令牌}

时间:2018-01-07 22:26:00

标签: javascript unexpected-token

javascript调试器在第3行说,花括号是一个意外的标记。 有人可以帮我解决这个问题吗?

setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() 
* 1000));
};

toggleHiLo = function() {
  if (hilo === 'hi') {
    hilo = 'hi';
  } else {
    hilo = 'hi';
  }
};
var num = parseFloat($('#balance').html());
bconfig.startbal = num;
bconfig.want = num ;
bconfig.autoexit = num - 10000;
rollDice();

1 个答案:

答案 0 :(得分:2)

您需要从第3行删除};,因为根本不需要它。

代码:

setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 1000));

toggleHiLo = function() {
  if (hilo === 'hi') {
    hilo = 'hi';
  } else {
    hilo = 'hi';
  }
};
var num = parseFloat($('#balance').html());
bconfig.startbal = num;
bconfig.want = num ;
bconfig.autoexit = num - 10000;
rollDice();