窗口信息提示最前,不因IE的缩小而看不见提示信息唉。。大家有什么解决方法!在网站中,客户收到信息就可以看到提示窗口,而及时处理问题。现在的问题是,客户太忙了。有时把IE窗口缩小了。就看到提示窗口了。这个问题太难了。

解决方案 »

  1.   

    像webqq一样有新消息就在任务栏的浏览器名称显示滚动。
      

  2.   

    是啊!像QQ一样,一有信息就提示。它不会,因IE或者页面。挡着了,而看不见!怎么样实现啊。!高手。
      

  3.   

    http://hi.baidu.com/qjfghdgit/blog/item/037c2266f4c59720aa184c3d.html
    应该就是使用window.status
      

  4.   

    我觉得这个要求有点过了。就比如webqq一样,一个页面的时候状态栏能显示有消息来了。当打开多个的时候,它也不提示呀。
      

  5.   

    你这个要求有点难,不过有两种方法可以实现类似的要求.
    一个是弹窗.弹出指定位置的窗口.window.open ('http://www.163.com','newwindow','height=100,width=400,top=0,left=0,toolbar=no,menubar=no,scrollbars=no, resizable=no,location=no, status=no')注意left和top属性.另一种方法是动态的设置window.title属性.
    当有消费来的时侯设置一下窗体的TITLE,让它滚动起来,如"您有新订单....."
    这种如:
    <html>
    <head>
    <title>网站特效:滚动的文字在浏览器标题栏上不停滚动_dushuwu.net</title><script language=javascript >
    var text=document.title
    var timerID
    function newtext() {
    clearTimeout(timerID)
    document.title=text.substring(1,text.length)+text.substring(0,1)
    text=document.title.substring(0,text.length)
    timerID = setTimeout("newtext()", 100)
    }
    </script>
    </head>
    <body onload="newtext()">
    </body>
    </html>
      

  6.   

    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_reloadPage(init) { //reloads the window if Nav4 resizedif (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
        document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
    else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
    }
    MM_reloadPage(true);function MM_openBrWindow(theURL,winName,features) { //v2.0
    window.open(theURL,winName,features);
    }
    //-->
    </script>
    <SCRIPT> var isie=1; 
    function pop() { 
    if(isie) { oPopup.show(x, y, imagewidth, imageheight); 
    startani=setTimeout("pop();",50); 


    var x=100,y=100,dx=speed,dy=speed; 
    var oPopup = window.createPopup(); 
    var oPopupBody = oPopup.document.body; 
    oPopupBody.style.cursor="hand" 
    oPopupBody.innerHTML = '你妈妈,叫你回家食饭!';  
    pop(); </script>
    最简单的原型