让网页的title动起来
Posted zcynine
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了让网页的title动起来相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>Hello,World!</title> </head> <body> <script type="text/javascript"> function scroll() { var titleInfo = document.title; var firstInfo = titleInfo.charAt(0); var lastInfo = titleInfo.substring(1, titleInfo.length); document.title = lastInfo + firstInfo; } setInterval("scroll()", 500); </script> </body> </html>
以上是关于让网页的title动起来的主要内容,如果未能解决你的问题,请参考以下文章