我正在制作一个游戏,其中我想要一个“玩家” object
,我想在一个函数中做到这一点,但我也想将对象绑定到显示为player
. 我想要这个,因为我后来创建了怪物,我希望悬停与悬停具有类似的效果,但基于该object
属性(即显示它们的健康)。我当前的方法不使用.data()
,并使用反向编码,虽然它适用于我现在拥有的东西,但我无法使用此代码扩展我的游戏,所以我想修复它。
这是我的尝试
function Player() {
this.currentLocation = 0;
printPlayer(this);
}
function printPlayer(p) {
$("#" + p.currentLocation).html( "<img src = 'http://3.bp.blogspot.com/-kAhN0HX-MBk/T_5bApfhbJI/AAAAAAAAAuI/lUww8xT9yV8/s1600/smileys_001_01.png'" +
"class='onTop displayCurrentHealth' alt='you' border='0' />" +
"<div class = 'healthLost hide'></div>");
}
var player = new Player();
console.log($("#" + player.currentLocation).data("inFight", "false"));
console.log($("#" + player.currentLocation).data("inFight"));
console.log($("#" + player.currentLocation).data(!"inFight"));
这是我的console.log()
结果
Object[]
adventure.js (line 62)
null
adventure.js (line 63)
null
adventure.js (line 64)
这是我的旧代码
function Player(id) {
this.id = id;
this.healthid = this.id + "health";
this.displayText = "<img src = 'http://3.bp.blogspot.com/-kAhN0HX-MBk/T_5bApfhbJI/AAAAAAAAAuI/lUww8xT9yV8/s1600/smileys_001_01.png'" +
"class='onTop displayCurrentHealth' id='" + this.id + "' alt='you' border='0' />" +
"<div id = '" + this.healthid + "' class = 'healthLost hide'></div>";
this.inFight = false;
this.currentLocation = 0;
this.xp = 0;
this.level = 1;
}
Object.defineProperty(player,"health",{
set: function() {
return 100 + ( this.level * 150 );
},
get: function() {
return 100 + ( this.level * 150 );
},
enumerable: true
} );
player.currentHealth = player.health;
Object.defineProperty(player,"strength",{
set: function() {
return ( this.level * 5 );
},
get: function() {
return ( this.level * 5 );
},
enumerable: true
} );
Object.defineProperty(player,"hitRating",{
set: function() {
return 3 + ( this.level );
},
get: function() {
return 3 + ( this.level );
},
enumerable: true
} );
我如何将它作为 jquerydata()
在函数中动态创建到可以具有更改位置的图像上?
- 更新 -
我添加了这个
$("#" + player.currentLocation).data("foo");
console.log($("#" + player.currentLocation).data());
这也返回null
。
- 更新 -
好的,所以我认为我需要某种mvc,有没有办法在 javascript/jquery 中做到这一点?如果是的话怎么办?请提供完整的解释和/或链接。