請幫忙解決問題。爲什麼不增加對象變量?
我做了幾個級別的遊戲班。
var Game = function() {
self = this;
this.myMove = false;
this.level = 1;
this.Start();
};
Game.prototype = {
Start: function() {
this.levelInfo();
$(document).keypress(function(){
self.level++;
// game body
self.Start();
});
},
levelInfo: function() {
this.clearScreen();
this.levelDisplay();
},
levelDisplay: function() {
$('<div class="level_label" id="levelLabel">Level: </div> \
<div class="level_value" id="levelValue">' + self.level + '</div>').appendTo('#game');
},
clearScreen: function() {
$('#game').html('');
}
};
但運行在比賽結束後,按下屏幕上的輸出中的任何鍵下一級序列:
1,2,4,16,32,等等...
但我需要遵循序列:
1,2,3,4,5,等...
小提琴:https://jsfiddle.net/6wyu8soj/
出於某種原因(您可能知道),您在遊戲原型中定義的$(document).keypress(function())被稱爲2^n次。 (用console.log證明,當然還有level變量的增長)。不知道爲什麼它被稱爲額外的時間,但。 – AaronCarson