使用typeof判断function是否存在于上下文_javascript技巧
来源:动视网
责编:小采
时间:2020-11-27 21:26:13
使用typeof判断function是否存在于上下文_javascript技巧
使用typeof判断function是否存在于上下文_javascript技巧:在窗口加载时,使用typeof判断function是否存在于上下文 window.onload = function(){ try{ if(test && typeof(test) == function){ test(); } }catch(e){ alert(方法不存在); } } function test(){ al
导读使用typeof判断function是否存在于上下文_javascript技巧:在窗口加载时,使用typeof判断function是否存在于上下文 window.onload = function(){ try{ if(test && typeof(test) == function){ test(); } }catch(e){ alert(方法不存在); } } function test(){ al

在窗口加载时,使用typeof判断function是否存在于上下文
使用typeof判断function是否存在于上下文_javascript技巧
使用typeof判断function是否存在于上下文_javascript技巧:在窗口加载时,使用typeof判断function是否存在于上下文 window.onload = function(){ try{ if(test && typeof(test) == function){ test(); } }catch(e){ alert(方法不存在); } } function test(){ al