你可以把它看作像写一般的CSS列表一样,只用增加两三行代码就能完成切换效果。 文本定时变动代码 #newslist{ background:#f8f8f8;border:1px solid silver;padding:1px;height:20px;line-height:20px;width:288px; } #contain{ font-size:12px;overflow:hidden;list-style:none;width:288px;height:20px;margin:0px;padding:0; } #contain li{ height:22px;line-height:22px;white-space:nowrap;overflow:hidden; } 百度,世界最大的中文搜索引擎 CSDN,中国最聚人气的IT技术社区 脚本之家 播放器 function xx(){ var container=document.getElementById("contain"); container.appendChild(container.firstChild); } setInterval("xx()",2000); [Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]