창이 로드되면 typeof를 사용하여 해당 함수가 컨텍스트에 존재하는지 확인하세요 window.onload = function(){ try{ if(test && typeof(test) == "function"){ test(); } }catch(e){ alert("方法不存在"); } } function test(){ alert("我是test()方法"); } 로그인 후 복사