jquery插件问题
(function($){$.fn.hello=function(){xxxx}})(jQuery);现已实现$.hello()··请问如何实现$.hello().sho...
(function($) {
$.fn.hello = function() {
xxxx
}
})(jQuery);
现已实现$.hello()··请问如何实现$.hello().show();这样的功能? 展开
$.fn.hello = function() {
xxxx
}
})(jQuery);
现已实现$.hello()··请问如何实现$.hello().show();这样的功能? 展开
1个回答
展开全部
(function($) {
$.fn.hello = function() {
xxxx
return this;
}
})(jQuery);
$.fn.hello = function() {
xxxx
return this;
}
})(jQuery);
追问
那个show也是自定义的方法喔····那要怎么搞?
追答
(function($) {
$.fn.hello = function() {
xxxx
return this;
};
$.fn.show = function() {
xxxx
return this;
};
})(jQuery);
来自:求助得到的回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询