$.isFunction()

指定した値がjavaScript関数かどうかを判定します。

$.isFunction( obj ) 1.2追加

戻り値:Boolean

引数 説明
obj 関数かどうかを調べるオブジェクトを指定します。

下記の結果はtrueになります。

$.isFunction(function(){});

jQuery1.3の時点では、alert()のようなブラウザのメソッドやDOM要素のgetAttribute()は InternetExplorerなどのブラウザで検出できる保証はありません。

サンプル

各パラメーターが関数かどうか調べます。

<!DOCTYPE html>
<html>
<head>
<style>
  div { color:blue; margin:2px; font-size:14px; }
  span { color:red; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<div>$.isFunction(objs[0]) = <span></span></div>
<div>$.isFunction(objs[1]) = <span></span></div>
<div>$.isFunction(objs[2]) = <span></span></div>
<div>$.isFunction(objs[3]) = <span></span></div>
<div>$.isFunction(objs[4]) = <span></span></div>
<script>
  function stub() {
  }
  var objs = [
        function () {}, //objs[0]
        { x:15, y:20 }, //objs[1]
        null,           //objs[2]
        stub,           //objs[3]
        "function"      //objs[4]
      ];

  $.each(objs, function (i) {
    var isFunc = $.isFunction(objs[i]);
    $("span").eq(i).text(isFunc);
  });
</script>
</body>
</html>

 Back to top

© 2010 - 2017 STUDIO KINGDOM