如何调用HTMLDocument.prototype.write?

时间:2013-10-23 01:10:50

标签: javascript dom

我有一个调用document.write(“something”)的scriptlet。在某些页面上它失败,因为document.write已被重新定义。根据这个页面,我可以找到函数的旧定义:

修复JavaScript typeof运算符| JavaScript,JavaScript ...... http://javascriptweblog.wordpress.com/2011/08/08/fixing-the-javascript-typeof-operator/

所以它在HTMLDocument.prototype.write中 - 但是如何调用呢?

1 个答案:

答案 0 :(得分:1)

尝试使用call

HTMLDocument.prototype.write.call(document, 'something');