自动切换和鼠标悬浮有冲突
我修改两处:
/===1
// if (config.triggerType === "click") {
// this.tabItems.bind("click", function () {
// _this_.invoke($(this));
// });
// } else if (config.triggerType === "mouseover" || config.triggerType != "click") {
// this.tabItems.bind("mouseover", function () {
// _this_.invoke($(this));
// });
// }
this.tabItems.bind("click mouseover", function () {
_this_.invoke($(this));
});
//=== 2
//tabItems.eq(_this_.loop).trigger(config.triggerType);
tabItems.eq(_this_.loop).trigger("click");
这样可以正常运行,但click效果似乎没有了,这个问题如何解决?