如果我在页面上有多个标签页,这个插件会中断,只有第一组标签可以使用。
$.fn.tabs = function() {
var selector = this;
this.each(function() {
var obj = $(this);
$(obj.attr('href')).hide();
$(obj).click(function() {
$(selector).removeClass('selected');
$(selector).each(function(i, element) {
$($(element).attr('href')).hide();
});
$(this).addClass('selected');
$($(this).attr('href')).show();
return false;
});
});
$(this).show();
$(this).first().click();
};
JS Fiddle example显示无效。