隐藏消息或淡出警报消息

时间:2014-05-12 06:04:07

标签: jquery smart-wizard

我想在移动到下一步时隐藏警告消息。

我正在使用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});
            }
          }

提前致谢。

2 个答案:

答案 0 :(得分:1)

使用内置方法:

if (stepnumber == 1) {
    $(function() { 
            $("#wizard").smartWizard("hideMessage");
            $("#wizard").smartWizard("fixHeight"); 
        });
}

答案 1 :(得分:-1)

请致电:

msgBox = $('.msgBox');
msgBox.hide();