【话题】请问jquery $.fn.里内部方法怎么调用?
2009-05-24 12:11:44 来自:无敌风火轮 浏览数:11次
请问jquery $.fn.里内部方法怎么调用?
我写成这样的
(function($) {
$.fn.ShowTip = function(){
var self = this;
function CountDown(){
}
setTimeout(function(){self.CountDown(TimeArea,ActionArea,overtimes,StateA,cover)},1000)
}
})(jquery)
但是调用不到。望专家指点。
更多相关的话题
人蝴蝶回复于24日12点28分
学习了,不过你的这个调用是能过setTimeout调用的,还可以在外面,在页面首次加载时调用的,如下:$(function(){
$('#popdiv').scrollCenter();
});
不过上面的这个方法是在这里面定义的,
(function($){
$.fn.extend({
scrollCenter: function(){...}
})
});
})(jQuery)
老鼠一号回复于24日12点45分
(function($) {
$.fn.ShowTip = function(){
function CountDown(){
}
setTimeout(function(){CountDown(TimeArea,ActionArea,overtimes,StateA,cover)},1000)
}
})(jquery)
搞定了。。。