js判断方法是否存在 2018-12-26 H5, 笔记 js判断方法是否存在1 123if (typeof testFun != 'undefined' && testFun instanceof Function) { //存在} 2 1234if (对象名.方法名) { //存在} 3 12345678if(typeof(testFun)=="function") { //存在 } else { //不存在 }