我正在使用snackjs
图书馆。
wrap.detach(namespace)
'Object Expected'
在 IE8中抛出 错误。
解释:
detach: function (namespace){
listenerMethod(this, 'detach', namespace, null, true)
this.data(namespace, null)
return this
},
function listenerMethod(wrapper, method, namespace, args){
var data = wrapper.data(namespace)
if (data)
snack.each(data, function (listener){
listener[method].apply(wrapper, args)
})
return wrapper
}
传入的第四个参数listenerMethod(this, 'detach', namespace, null, true)
是null
listener[method].apply(wrapper, args)
给出错误也是如此。
这是因为在 IE8
function.apply(obj , null)
会抛出错误。