2017-05-02 110 views
1

我使用下面的代碼未捕獲的SyntaxError jQuery的

$(document).ready({ 
    if ($('.help-block').text().length > 0) { 
    setTimeout(function(){$('.help-block').text("");},3000); 
    } 
}); 

但收到以下錯誤

Uncaught SyntaxError: Unexpected token (

在下一行

if ($('.help-block').text().length > 0) { 

我不解決這個問題。需要幫助

+0

$(document).ready(function(){你的語句在這裏});使用此語法就緒功能 – Muzamil301

回答

3

問題出在您正在向$(document).ready()提供對象而不是函數。試試這個:

$(document).ready(function() { // note function() here 
    if ($('.help-block').text().length > 0) { 
    setTimeout(function() { 
     $('.help-block').text(''); // you could use empty() here instead 
    }, 3000); 
    } 
});