如果我有一个对象:
function myClass(id) {
this.em = document.getElementById(id);
this.html = function(data) {
this.em.html = data;
}
}
现在我能 :
var em = new MyClass("id");
em.html("NEW HTML HERE");
我需要 :
em.html = "NEW HTML HERE";
可能吗?