当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery jQuery.isFunction()用法及代码示例


用法
jQuery.isFunction( value ) => boolean

不推荐使用的版本:3.3

说明:确定其参数是否可作为函数调用。

  • 添加的版本:1.2jQuery.isFunction( value )

    • value
      类型:Anything
      要测试的值。

从 jQuery 3.3 开始,jQuery.isFunction() 已被弃用。在大多数情况下,它的使用可以替换为 typeof x === "function"

注意:从 jQuery 1.3 开始,浏览器提供的函数如alert()和 DOM 元素方法,例如getAttribute()不保证在 Internet Explorer 等浏览器中被检测为函数。

例子:

测试几个参数示例。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>jQuery.isFunction demo</title>
  <style>
  div {
    color: blue;
    margin: 2px;
    font-size: 14px;
  }
  span {
    color: red;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<div>jQuery.isFunction( objs[ 0 ] ) = <span></span></div>
<div>jQuery.isFunction( objs[ 1 ] ) = <span></span></div>
<div>jQuery.isFunction( objs[ 2 ] ) = <span></span></div>
<div>jQuery.isFunction( objs[ 3 ] ) = <span></span></div>
<div>jQuery.isFunction( objs[ 4 ] ) = <span></span></div>
 
<script>
function stub() {}
var objs = [
  function() {},
  { x:15, y:20 },
  null,
  stub,
  "function"
];
 
jQuery.each( objs, function( i ) {
  var isFunc = jQuery.isFunction( objs[ i ]);
  $( "span" ).eq( i ).text( isFunc );
});
</script>
 
</body>
</html>

演示:

判断参数是否为函数。

$.isFunction(function() {});

结果:

true

相关用法


注:本文由纯净天空筛选整理自jquery.com大神的英文原创作品 jQuery.isFunction()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。