jQuery.isFunction( obj )
מחזירה: ערך בולאני
תיאור: קובע, אם האובייקט שעובר כי פרמטר הוא פונקציה Javascript.
שימו לב:
מתחיל מ-
jQuery 1.3,
לא מובטח שפונקציות כמו
alert(),
ושיטות DOM
כמו getAttribute(),
יזהו בדפדפנים כמו
Internet Explorer.
דוגמאות
דוגמה 1
בוחן מספר פרמטרים.
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);
});
קוד מלא:
<!DOCTYPE html> <html> <head> <script src="http://code.jquery.com/jquery-latest.js"></script> <script> $(document).ready(function(){ 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> <style> div { color:blue; margin:2px; font-size:14px; } span { color:red; } </style> </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> </body> </html>
דוגמה 2
קובע אם הפרמטר הוא פונקציה.
$.isFunction(function(){});
true
האם מידע זה היה מועיל?

