该应用停止。我哪里错了?单击该按钮可将文本更改为单击项目的次数。
$("#menuContent").hover(function () {
loop();
}
, function () {
stop();
}
);
function stop() {
$(".mainButton").stop();
}
function loop() {
$(".mainButton").stop().animate({ left: "+=20"}, 100, 'linear', function () { loop(); });
}
答案 0 :(得分:3)
这是一个经典的错误
您在View.setText()
上使用的是int
,而且需要位于String
上。
尝试
button.setText(countClicks + "");
通过将整数与空字符串连接起来,它会自动将其转换为字符串