当我进入下一步时,我想隐藏警报消息。
我正在使用 jquery 智能向导选项卡导航。请检查示例代码。
if(step == 1){
if(validateStep1() == false ){
isStepValid = false;
$('#wizard').smartWizard('showMessage','Please correct the errors in application form and click next.');
$('#wizard').smartWizard('setError',{stepnum:step,iserror:true});
}else{
$('#wizard').smartWizard('setError',{stepnum:step,iserror:false});
}
}
提前致谢。