2014-05-12 98 views
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}); 
      } 
      } 

在此先感謝。

+0

哪裏是你的,如果條件......我只能看到其他部分 –

+0

解放軍編輯給你的問題上面..這樣人們可以更好地幫助你 –

回答

-1

只要致電:

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

使用內置的方法:

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