我的代码是
function getID( swfID ){
if(navigator.appName.indexOf("Microsoft") != -1){
me = window[swfID];
}else{
me = document[swfID];
}
}
function js_to_as( str ){
me.onChange(str);
}
但是,有时我onChange
无法加载。萤火虫错误
me.onChange不是一个函数
我想优雅地降级,因为这不是我程序中最重要的功能。typeof
给出相同的错误。
关于如何确保它存在然后仅执行的任何建议onChange
?
(下面的任何一种方法都不能尝试抓到一件作品)
This will verify if the function exists, if so it will be executed
Thus the error
TypeError: me.onChange is not a function
is prevent.