0

当您单击按钮时,包含该位置的变量被声明为字符串!这是 html 代码: http: //insane96mcp.altervista.org/corsa.html 这是 javascript 代码:http: //insane96mcp.altervista.org/corsa.js

4

1 回答 1

0

问题在于这一行:

pxMove=(Math.random()*10).toFixed();

toFixed会将您的数字转换为字符串,然后下一行中的加号运算符将连接它而不是求和。如果要将其舍入并转换为整数,可以使用Math.round

pxMove = Math.round(Math.random() * 10);
于 2013-10-29T16:30:57.057 回答