我很难理解如何使用 jQuery 智能向导。
我已经设法为我的前三个选项卡使用静态 html,但我现在想添加另一个选项卡,它使用 ajax 调用来根据我在以前的选项卡中收集的数据获取数据。
我知道有用于离开和进入步骤的回调函数,但文档不清楚如何使用它们(或者我可能没有足够的 jQuery/JavaScript 来正确解释文档)
我读它的方式是我会用
$("#smartwizard").on("stepContent", function(e, anchorObject, stepIndex, stepDirection) {
// if this is the correct step index then
// do my ajax call using a promise
// (Which I do not understand fully how to do.
// I have never used a promise before.)
// and return my html. (Where is the html going to be put? is it the 'tabpanel'?)
return myHTMLfromtheajaxcall;
// else do nothing
// How do I stop it overriding the existing content?
// Do I return '' or false or what?
});
函数的参数从何而来,从何而来。什么是'e'?什么是'anchorObject'?其他参数是不言自明的。
我希望有人可以通过一些例子简单地解释事情。
先感谢您。