标签: javascript oop prototype
Element.prototype.objProp = new function(){ this.property = null; };
现在什么是null我想设置等于元素的ID。我的主要问题是如何访问元素。每当我使用this关键字时,它返回对象本身而不是元素。怎么办?
this