專題文章
時(shí)長(zhǎng):00:00更新時(shí)間:2020-11-27 21:06:25
Javascript判斷是否存在函數(shù)的方法_javascript技巧: 代碼如下: window.onload=function(){ try{ if(test&&typeof(test)==function){ test(); }else{ alert(不存在的函數(shù)); } }catch(e){ } } function test(){ alert(函數(shù)執(zhí)行……); } 如果不存在,會(huì)拋出異常,所以要
查看詳情