jQuery 怎么在.fn.xx 里面进行on绑定
1个回答
展开全部
self 前面加个var
问题对人有帮助,内容完整,我也想知道答案0 问题没有实际价值,缺少关键内容,没有改进余地
<script type="text/javascript">
$(function(){
$('#maintabs').tabdiv();
})
</script>
(function($) {
$.fn.tabdiv = function(){
self = this;
thisId = $(self).attr('id');
tClass = '.' + thisId;
tab = '#' + thisId + ' ' + '.tab';
tabDiv = tClass + ' .tab-div';
$(document).on('click',tab,function(){
$(tab).removeClass('active');
$(this).addClass('active');
$(tabDiv).removeClass('active');
$('#' + $(this).data('tab')).addClass('active');
});
};
})(jQuery);
问题对人有帮助,内容完整,我也想知道答案0 问题没有实际价值,缺少关键内容,没有改进余地
<script type="text/javascript">
$(function(){
$('#maintabs').tabdiv();
})
</script>
(function($) {
$.fn.tabdiv = function(){
self = this;
thisId = $(self).attr('id');
tClass = '.' + thisId;
tab = '#' + thisId + ' ' + '.tab';
tabDiv = tClass + ' .tab-div';
$(document).on('click',tab,function(){
$(tab).removeClass('active');
$(this).addClass('active');
$(tabDiv).removeClass('active');
$('#' + $(this).data('tab')).addClass('active');
});
};
})(jQuery);
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询