当用户单击下一个按钮时,看起来jquery.jwizard.jsnextStep()
中的方法正在被调用。是否可以显式调用该方法并传递一些选项,这样我就不会在下一个屏幕上看到取消按钮?我怎样才能?
问问题
1123 次
1 回答
1
Based on the examples, I'd say you can programatically jump to the next step like this:
$w = $("#jWizard");
$w.jWizard("nextStep");
In order to hide the cancel button you can set the corresponding option:
$("#jWizard").jWizard({
buttons: {
cancelHide: true
}
});
于 2011-05-28T21:42:21.780 回答