©
Ce document utilise Manuel du site Web PHP chinois Libérer
扩展jQuery对象本身。
用来在jQuery命名空间上增加新函数。 查看 'jQuery.fn.extend' 获取更多添加插件的信息。
用以扩展 jQuery 对象
在jQuery命名空间上增加两个函数。
jQuery.extend({ min: function(a, b) { return a < b ? a : b; }, max: function(a, b) { return a > b ? a : b; } });
jQuery.min(2,3); // => 2 jQuery.max(4,5); // => 5