我想知道我可以在javascript中做一些与这个(不工作)代码“相似”的事情吗?
function Player () {
this.Inventory = function () {
this.Inventory.UseItem = function(item_id) {
/* use the item ... */
}
}
}
然后像这样使用它:
current_player = new Player();
current_player.Inventory.UseItem(4);