jQuery中的isFunction()方法用于确定其参数是否可以作为函数调用。
用法:
jQuery.isFunction( value )
参数:isFunction()方法仅接受上面提到并在下面描述的一个参数:
- value:此参数是要测试的值。
返回值:它返回布尔值。
以下示例说明了jQuery中isNumeric()方法的用法:
范例1:在此示例中,isFunction()方法检查值以查看其是否为函数。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JQuery | isFunction () method</title>
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
</head>
<body style="text-align:center;">
<h1 style="color:green">
GeeksForGeeks
</h1>
<h3>JQuery | isFunction () method</h3>
<b>Check the function() {} is a function or not. </b>
<br>
<p></p>
<script>
//function() {}
$( "p" ).append("" +$.isFunction(function() {}));
</script>
</body>
</html>
输出:
范例2:在此示例中,isFunction()方法还检查一个值以查看其是否为函数。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JQuery | isFunction () method</title>
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
</head>
<body style="text-align:center;">
<h1 style="color:green">
GeeksForGeeks
</h1>
<h3>JQuery | isFunction () method</h3>
<b>Check the following are the function or not. </b>
<br><br>
<div>jQuery.isFunction( geeks[ 0 ] ) = <span></span></div>
<div>jQuery.isFunction( geeks[ 1 ] ) = <span></span></div>
<div>jQuery.isFunction( geeks[ 2 ] ) = <span></span></div>
<script>
function stub() {}
var geeks = [
function() {},
{ x:15, y:20 },
null,
stub,
"function"
];
jQuery.each( geeks, function( i ) {
var isFunc = jQuery.isFunction( geeks[ i ]);
$( "span" ).eq( i ).text( isFunc );
});
</script>
</body>
</html>
输出:
相关用法
- Underscore.js _.isFunction()用法及代码示例
- AngularJS angular.isFunction()用法及代码示例
- JQuery css()用法及代码示例
- JQuery before()用法及代码示例
- JQuery off()用法及代码示例
- JQuery get()用法及代码示例
- JQuery die()用法及代码示例
- JQuery add()用法及代码示例
- JQuery is()用法及代码示例
- JQuery slideToggle()用法及代码示例
- JQuery delegate()用法及代码示例
- JQuery slideDown()用法及代码示例
- JQuery append()用法及代码示例
- JQuery unbind()用法及代码示例
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 JQuery | isFunction() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。