我在参数列表之后收到一条错误消息,上面写着 missing ) 并且不知道为什么。
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');
}
关于为什么会这样的任何想法?