和
$.fn.customFunction = function(){};
我们可以扩展整个 jQuery 并将其用于:
$('body').customFunction();
是否可以仅扩展指定的元素,例如:
var elem = $('#elem');
elem.fn.customFunction = function(){};
elem.customFunction(); // function is called
$('body').customFunction(); // this call should cause error