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();
答案 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();