每当有传入消息时,我都试图让文档标题闪烁。我能够让标题正确地闪烁,但我遇到的问题是它不会停止。理想情况下,当鼠标移动时闪烁将停止,但我不确定为什么我的onmousemove处理程序将无法正常工作。我正在使用的浏览器是IE 11.
function titleAlert(message) {
var alertId, oldTitle = document.title;
alertId = setInterval(function(){
document.title = document.title == message ? oldTitle : message;
}, 1500);
var clear = function() {
clearInterval(alertId);
document.title = oldTitle;
oldTitle = alertId = null;
};
return function() {
//also tried document.onmousemove
window.onmousemove = clear;
};
}
答案 0 :(得分:0)
你刚刚返回了一个函数的定义但没有运行它。
http://domain:8000