js定时翻页这个代码怎么修改?

<styletype="text/css">#’divMsg{line-height:20px;height:40px;font-size:13px;overflow:h... <style type="text/css">
#’divMsg{
line-height:20px;
height:40px;
font-size:13px;
overflow:hidden;
color:Red;
margin-left:50px;
}
</style>
<script type="text/javascript">
var Scroll = new function(){
this.delay = 2000; //延迟的时间
this.height = 20; //行的高度
this.step = 4; //步长
this.curHeight= 0;
this.stimer = null;
this.timer = null;
this.start = function(){ //开始翻页-调用move方法
this.move();
}
this.move = function(){
var self = this;
if(this.curHeight == this.height) //如果显示完一行
{
this.timer = setTimeout(function(){ //使用定时器-定时下一行的翻页时间
self.move();
}, this.delay);
this.curHeight = 0;
if(this.element.scrollTop >= this.element.scrollHeight - this.height){ //滚动信息已经完毕
this.element.scrollTop = 0;
}
return true;
}
this.element.scrollTop += this.step;
this.curHeight += this.step;
this.timer = setTimeout(function(){ //设置自动翻页定时器
self.move();
}, 30);
}
this.stop = function(){ //清除定时期,停止滚动翻页
clearTimeout(this.timer);
}
}
</script>

<div style="font-size:13px; color:Black">本季度诚信企业名单公布如下:</div>
<div id="divMsg" runat="server">

</div>

<script type="text/javascript">
Scroll.element = document.getElementById(‘divMsg');
Scroll.start();
</script>

请问怎么改,可以不让他翻到结尾的时候停止啊
展开
 我来答
匿名用户
2011-04-27
展开全部
每个种族都各有特定的职业可供选择。游戏内各职业除了各自拥有种类繁多的技能和法术外,还拥有不同的天赋树,玩家可以创造出属于自己的个性的人物角色。在《魔兽世界:燃烧的远征》之前的版本中,圣骑士为联盟独有,萨满祭司为部落独有。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式