当前位置: 代码迷 >> J2EE >> if(typeof window.nodeEvent!='undefined'),该怎么解决
  详细解决方案

if(typeof window.nodeEvent!='undefined'),该怎么解决

热度:373   发布时间:2016-04-22 02:47:18.0
if(typeof window.nodeEvent!='undefined')
if(typeof window.nodeEvent!='undefined')什么意思?

------解决方案--------------------
typeof是判断对象的类型。如果window没有nodeEvent属性,那么就会返回undefined。undefined的类型就是'undefined'。
有点绕口,呵呵。
------解决方案--------------------
window.nodeEvent 的类型不是 'undefined'
------解决方案--------------------
js中判断对象的类型 相当于
!(typeof nodeEvent) 就是获取不到nodeEvent的类型的时候
  相关解决方案