首页 > 代码库 > Cannot read property 'defaultView' of undefined js操作异常

Cannot read property 'defaultView' of undefined js操作异常

在function(obj){}函数中操作对象时,突然遇到“Cannot read property ‘defaultView‘ of undefined”js报错!

打印出obj即可发现问题,在js函数传参时$(this)传递的是父类的jquary对象,this传递的是父类HTML对象。当this包含在B函数对象中调用时,需要在调用B之前把this复制一份var thisObj=this。

Cannot read property 'defaultView' of undefined js操作异常