jQuery.isFunction( obj )
<html> <head> <title>ThaiCreate.Com jQuery Tutorials</title> <style> div { color:blue; margin:2px; font-size:14px; } span { color:red; } </style> <script type="text/javascript" src="jquery-1.6.4.js"></script> <script type="text/javascript"> $(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); $("span").eq(i).text(isFunc); }); }); </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> </body> </html>
ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท