我有以下 javascript 错误 - Microsoft JScript 运行时错误:'style' 为 null 或不是对象。我正在使用prototype-1.6.1.js 库。错误在 prototpye 库代码中:
Element.Methods.getStyle = function(element, style) {
element = $(element);
style = (style == 'float' || style == 'cssFloat') ? 'styleFloat' : style.camelize();
var value = element.style[style];
这个错误只发生在开发机器上,在调试时在 Internet Explorer 上。我在生产中没有这个错误。在调用堆栈中,我看到第一个函数是“函数绑定(上下文)”,它是原型的函数。我没有在我的代码中的任何地方使用它...