JavaScript-html標題滾動效果
阿新 • • 發佈:2017-05-31
charset 設置 script split dsm ctype java title document
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta content="text/html;charset=utf-8" http-equiv="content-type"> <title>激情網頁遊戲</title> </head> <script type="text/javascript" charset="utf-8"> var s="激情網頁遊戲……".split(""); alert("OK"); function func(){ s.push(s[0]); s.shift();// 去掉數組的第一個元素 document.title = s.join(""); } setInterval(func,1000);//設置時間間隔執行 </script> <boty></boty> </html>
JavaScript-html標題滾動效果