我收到一個錯誤消息,說失蹤)參數列表後,不知道爲什麼。在參數列表中失蹤)
function getInboxUnreadMessagesCount(displayElementID)
{
$.get(<?php echo base_url(); ?>'dashboard/getInboxUnreadMessagesCount', function(data)
{
$messageCountJSON = data;
if(displayElementID != null && displayElementID != undefined && displayElementID != '')
{
//$('#'+displayElementID).html($messageCountJSON);
if(parseInt($('#'+displayElementID).text()) < parseInt($messageCountJSON))
{
$.jGrowl("You have received a new private message!", {theme : 'information'});
$('#'+displayElementID).html($messageCountJSON).css({"display":"block"});
}
if(parseInt($messageCountJSON) == 0)
{
$('#'+displayElementID).html($messageCountJSON).css({"display":"none"});
}
}
}, 'json');
}
想到這是爲什麼?
因爲沒有)參數列表後?請張貼更多的代碼。 – Griwes 2012-04-15 21:09:29
因爲)確實缺少(''.get(') – 2012-04-15 21:09:33
打開3個圓括號,關閉2.可能是一個問題... – GolezTrol 2012-04-15 21:10:26