大家好,我正在开发一个聊天应用程序......我有多个聊天窗口......我想知道哪个窗口包含新消息......我有以下代码......
function getCount()
{
$.ajax({
type: "POST",
url: baseUrl + '/Chat/count',
data: "chat_id=" + document.ajax.chat_id.value,
success: function(msg){
if(msg == 'new1') {
self.focus();
//window.focus();
}
}
});
}
如果一个接线员参加两个聊天......
例如网址就像 http://localhost/nisanth/admin/Chat/index/chatId/15 http://localhost/nisanth/admin/Chat/index/chatId/16
http://localhost/nisanth/user/Chat/index/chatId/15 http://localhost/nisanth/user/Chat/index/chatId/16
如果user 16
输入消息我需要关注
http://localhost/nisanth/admin/Chat/index/chatId/16
此代码适用于 IE,但不适用于 firefox...请给我一个解决方案...上面的代码在同一个 html 中