久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      javascript怎么判斷是否為函數(shù)

      在javascript中,可以借助typeof和“===”操作符來判斷是否為函數(shù),語法格式“if(typeof 函數(shù)名稱 === "function"){//是函數(shù)}else { //不是函數(shù)}”。

      javascript怎么判斷是否為函數(shù)

      本教程操作環(huán)境:windows7系統(tǒng)、javascript1.8.5版、Dell G3電腦。

      javascript判斷是否為函數(shù)

      <script type="text/javascript">     //判斷是否為函數(shù)     try {         if(typeof FunName === "function") { //是函數(shù)    其中 FunName 為函數(shù)名稱             alert("is function");         } else { //不是函數(shù)             alert("not is function");         }     } catch(e) {} </script>

      說明:

      typeof 操作符用于檢測(cè)變量的數(shù)據(jù)類型

      【推薦學(xué)習(xí):javascript高級(jí)教程】

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)