2009-08-06 52 views
1

我有下面的代碼,但fadeIn和fadeOut太快,我幾乎看不到它。爲什麼?fadeIn問題在jquery

$('#post_code_error').html('You Post Code is Out of Range').addClass('post_code_error').show().fadeIn('10000'); 



    <div id="post_code_error"></div> 


    div#post_code_error { 
display:none; 
position:absolute; 
top:300px; 
right:100px; 
    } 

    .post_code_error { 
width:100px; 
height:10px; 
border:1px solid #F00; 
background-color: #FFC; 
    color:#F60; 
    } 

回答

4

您的時間應該花費不應該是一個字符串值量:

$('#post_code_error').html('You Post Code is Out of Range').addClass('post_code_error').show().fadeIn(10000); 
1

取出.show()電話。這使得它在調用fadeIn()方法之前立即出現。對於fadeIn方法執行時間,也使用integer,而不是string