你在网页上的消息提醒的消息提醒功能实现了吗?可以把代码拷给我吗?方便的话留下QQ吧?谢谢
发布网友
发布时间:2022-05-16 02:28
我来回答
共2个回答
热心网友
时间:2023-10-09 06:14
<script type="text/javascript">
var dynamicMsg = null;
function init() {
dynamicMsg = new DynamicMessage(window.document.title, "【 】", "【新 消 息】");
}
function begin() {
if(dynamicMsg!=null)
{
dynamicMsg.initIntervalMsg();
}
}
function end() {
if(dynamicMsg!=null)
{
dynamicMsg.clearIntervalMsg();
}
}
/**
* 处理新消息提示的操作
*/
function DynamicMessage(defaultMsg, msg, hiddenMsg) {
this.initIntervalMsg = function() {
this.intervalMsg = setInterval(function() {
if(!this.bMsg) {
window.document.title = msg + " - " + defaultMsg;
this.bMsg = true;
} else {
window.document.title = hiddenMsg + " - " + defaultMsg;
this.bMsg = false;
}
},
1000
);
};
this.clearIntervalMsg = function() {
if(this.intervalMsg != null) {
clearInterval(this.intervalMsg);
window.document.title = defaultMsg;
this.bMsg = false;
}
};
}
</script>
调用
ScriptManager.RegisterClientScriptBlock(this, typeof(Page), "Alert", "begin();", true);
ScriptManager.RegisterClientScriptBlock(this, typeof(Page), "Alert", "end();", true);
QQ 799613799来自:求助得到的回答
热心网友
时间:2023-10-09 06:15
大方广泛的规定发给