gpt4 book ai didi

php - ajax 成功的 if/else 语句

转载 作者:行者123 更新时间:2023-11-29 18:25:22 25 4
gpt4 key购买 nike

我正在尝试获取未读消息的统计信息:PHP 代码 (BubbleStat.php) 如下所示:

$totalMsg = $mysql->totalRows("SELECT msg_id from messages WHERE msg_opened = 0 AND msg_receiver = '".$_SESSION["ActiveUserSessionId"]."'");
echo $totalMsgs;

我有这个 jQuery 代码:

$.ajax({
type: "POST",
url: '/BubbleStat.php',
cache: false,
success: function(html)
{
$("#Bubble_Msg").show();
}
});

那么我如何在#Bubble_Msg 中获取未读消息的计数器?如果计数器没有隐藏 div #Bubble_Msg 的未读消息,那就太好了。

有什么想法吗?

最佳答案

试试这个:

success: function(html) {

// Check if the Counter have unread messages
if (parseInt(html) > 0) {
$("#Bubble_Msg").text(html).show();
}
else {
$("#Bubble_Msg").hide();
}
}​

关于php - ajax 成功的 if/else 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14032570/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com