2

当我进入下一步时,我想隐藏警报消息。

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

提前致谢。

4

2 回答 2

1

使用内置方法:

if (stepnumber == 1) {
    $(function() { 
            $("#wizard").smartWizard("hideMessage");
            $("#wizard").smartWizard("fixHeight"); 
        });
}
于 2016-07-29T17:35:05.977 回答
-1

只需致电:

msgBox = $('.msgBox');
msgBox.hide();
于 2014-06-03T13:01:00.990 回答