求一段可以让IE窗口标题高亮闪动的代码
闪动并置前

解决方案 »

  1.   

    思路:把元素一会显示一会隐藏就造成闪动效果了
    window.focus()直前
      

  2.   

    <HTML>
    <HEAD>
    <META http-equiv='Content-Type' content='text/html; charset=gb2312'>
    <TITLE>标题栏闪烁效果</TITLE>
    </HEAD>
    <BODY ><script language="JavaScript">
    step=0
    function flash_title()
        {
          step++
          if (step==3) {step=1}
          if (step==1) {document.title='【你有新的消息】'}
          if (step==2) {document.title='【      】'}
          setTimeout("flash_title()",380);
        }
    flash_title()
    </script></BODY></HTML>