我目前正在努力更好地理解
JavaScript和原型设计.
这段代码:
document.prototype.writeLine = function(text){ this.write(text); this.write("<br />"); };
// In FireFox TypeError: document.prototype is undefined // In Chrome Uncaught TypeError: Cannot set property 'writeLine' of undefined
如何扩展文档对象以便能够调用类似于document.WriteLine(‘MyText’)的内容?
这是我正在使用的Fiddle.