我正在Spring中创建一个聊天应用程序。当我向接收浏览器发送新消息时,我想要闪烁浏览器任务栏图标以进行通知。怎么办呢?
我的任务栏闪烁代码如下(它不起作用)。
var startTime = new Date().getTime();
setInterval(function () {
if (x == 0) {
if (new Date().getTime() - startTime > 6000) {
$('#new_msg').html("Home - Messanger");
$("ul[id*=myid] li").click(function () {
clearInterval(1000);
$('#new_msg').html("Home - Messanger");
});
return;
} else {
}
x = 1;
} else {
if (x = 1) {
window.getAttention();
$('#new_msg').html(send_user + " meassge sent u..!!");
x = 0;
}
}
}, 1000);
请帮帮我。我能得到的任何帮助将不胜感激。
感谢您的时间。
答案 0 :(得分:0)