当尝试非常快速地单击选项卡时,两个选项卡在 Jquery SmartWizard.js 插件中被选中,我尝试了这种方式,但没有运气,任何人都经历过这个......并且也尝试了.on /.off
没有运气的事件。
$($this.steps).bind("click", function (e) {
//e.stopImmediatePropagation();
$($this.steps).unbind("click");
if ($this.steps.index(this) == $this.curStepIdx) {
return false;
}
var nextStepIdx = $this.steps.index(this);
var isDone = $this.steps.eq(nextStepIdx).attr("isDone") - 0;
if (isDone == 1) {
_loadContent($this, nextStepIdx);
}
$($this.steps).bind("click");
return false;
});