<div class="codetitle"> <span><a style="CURSOR: pointer" data="17345" class="copybut" id="copybut17345" onclick="doCopy('code17345')"><u>复制代码</u></a></span> 代码如下:</div> <div class="codebody" id="code17345"> <br>window.onload=function(){ <br>try{ <br><br>if(test&&typeof(test)=="function"){ <br>test(); <br>}else{ <br>alert("不存在的函数"); <br>} <br>}catch(e){ <br>} <br>} <br>function test(){ <br>alert("函数执行……"); <br>} <br> </div> <br>如果不存在,会抛出异常,所以要加try……catch。