首页 > 编程 > JavaScript > 正文

一个JS函数搞定网页标题(title)闪动效果

2019-11-20 15:29:03
字体:
来源:转载
供稿:网友
复制代码 代码如下:

<html>
<head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <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>
aaaaaaddaaaaaa
</body>
</html>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表