码迷,mamicode.com
首页 > 其他好文 > 详细

标题滚动!!!!

时间:2017-05-27 21:17:53      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:转换   方法   数组   var   .sh   document   返回   元素   first   

var tit =function(){

var title = document.title;

var arr = title.split("");

var first = arr.shift();

arr.push(first); title =arr.join("");

document.title = title;

setTimeout(tit,1000);

};

其中 split 方法 用来将字符串转换为数组;

  join 方法 用来将数组转换成字符串;

  shift 删除并返回第一个数组元素;

  push 在最后面添加一个数组元素;

加油!!!!

标题滚动!!!!

标签:转换   方法   数组   var   .sh   document   返回   元素   first   

原文地址:http://www.cnblogs.com/lichengjie/p/6914345.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!