我为 onbeforechange 方法编写了一个回调函数。下面是代码:
introJs().onbeforechange(function() {
if($(this).is(":visible") != true)
if($(this).is("ui-tabs-panel") == true)
$('.ui-tabs-nav a[href$="' + $(this).attr('id') + '"]').click();
else
$(this).show();
}).start();
逻辑是正确的(在没有调用 introJs().start() 的情况下进行了测试)但是,在下一步之前仍然不会调用此回调函数。有任何想法吗?