js在firefox中失效

是一段图片山乡间歇滚动的代码,ie下正常,firefox中失效并提示出错!<scriptlanguage="JavaScript">marqueesHeight=60;s... 是一段图片山乡间歇滚动的代码,ie下正常,firefox中失效并提示出错!
<script language="JavaScript">
marqueesHeight=60;
stopscroll=false;
with(makewing){
style.width=0;
style.height=marqueesHeight;
style.overflowX="visible";
style.overflowY="hidden";
noWrap=true;
onmouseover=new Function("stopscroll=true");
onmouseout=new Function("stopscroll=false");
}
preTop=0; currentTop=marqueesHeight; stoptime=0;
makewing.innerHTML+=makewing.innerHTML;

function init_srolltext(){
makewing.scrollTop=0;
setInterval("scrollUp()",1);
}init_srolltext();

function scrollUp(){
if(stopscroll==true) return;
currentTop+=1;
if(currentTop==marqueesHeight+1)
{
stoptime+=1;
currentTop-=1;
if(stoptime==300)
{
currentTop=0;
stoptime=0;
}
}
else {
preTop=makewing.scrollTop;
makewing.scrollTop+=1;
if(preTop==makewing.scrollTop){
makewing.scrollTop=marqueesHeight;
makewing.scrollTop+=1;

}
}

}
init_srolltext();
</select>

<!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 http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta name="Copyright" content="中国站长站 http://www.chinaz.com/" />
<meta name="description" content="中国站长站!" />
<meta content="中国站长站" name="keywords" />
<title>中国站长站</title>
</head>
<style type="text/css">
body {text-align:center}
td {font-size: 12px;text-align:center}
</style>
</head>

<body>
<div id="makewing" style="height:60px;">
<table width="778" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="60" bgcolor="#66CCFF">1</td>
</tr>
<tr>
<td height="60" bgcolor="#FFCC66">2</td>
</tr>
<tr>
<td height="60" bgcolor="#99CC66">3</td>
</tr>
<tr>
<td height="60" bgcolor="#66CCFF">4</td>
</tr>
<tr>
<td height="60" bgcolor="#FFCC66">5</td>
</tr>
<tr>
<td height="60" bgcolor="#99CC66">6</td>
</tr>
</table>
<script language=JavaScript src="js/powerpoint.js"></script>
</div>
<br><br>转载请注明出处:<a href="http://www.chinaz.com/" target="_blank">中国站长站</a>
</div>
</body>
</html>
展开
 我来答
百度网友d2b5a3d
推荐于2016-08-10 · 超过16用户采纳过TA的回答
知道答主
回答量:50
采纳率:0%
帮助的人:20万
展开全部
你试试,我保证行!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>demo</title>
<style type="text/css" media="all">
/* <![CDATA[ */
ul{margin:0; width:110px; padding:5px; height:220px; border:solid 1px #000; overflow:hidden}
ul li{list-style:none; width:100px; height:100px; line-height:100px; text-align:center; background:#eee; border:solid 5px #fff;}
/* ]]>*/
</style>
</head>
<body>
<div>
<ul id="div">
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
<li>10</li>
</ul>
</div>
<script type="text/javascript">
function simplescroll(c, config) {
this.config = config ? config : {start_delay:30, speed: 30, delay:30, scrollItemCount:1};
this.container = document.getElementById(c);
this.pause = false;
var _this = this;

this.init = function() {
_this.scrollTimeId = null;
setTimeout(_this.start,_this.config.start_delay);
}

this.start = function() {
var d = _this.container;
var line_height = d.getElementsByTagName('li')[0].offsetHeight;
if(d.scrollHeight-d.offsetHeight>=line_height) _this.scrollTimeId = setInterval(_this.scroll,_this.config.speed)
};

this.scroll = function() {
if(_this.pause)return;
var d = _this.container;d.scrollTop+=2;
var line_height = d.getElementsByTagName('li')[0].offsetHeight;
if(d.scrollTop%(line_height*_this.config.scrollItemCount)<=1){
d.scrollTop=0;
for(var i=0;i<_this.config.scrollItemCount;i++){d.appendChild(d.getElementsByTagName('li')[0]);}
clearInterval(_this.scrollTimeId);
setTimeout(_this.start,_this.config.delay);
}
}

this.container.onmouseover=function(){_this.pause = true;}
this.container.onmouseout=function(){_this.pause = false;}
}
var div = new simplescroll('div', {start_delay:30, speed:30, delay:30, scrollItemCount:2});
div.init();
</script>
</body>
</html>

我试过N次了 不会让你失望哦!
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
tiancaihuli5
2009-10-19 · TA获得超过2411个赞
知道答主
回答量:102
采纳率:0%
帮助的人:114万
展开全部
你只要保证IE 没问题就行 。其他的旁门左道的浏览器不用在意。我们必须有个准则。IE就是准则
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ludinghui125
2009-10-17 · TA获得超过194个赞
知道小有建树答主
回答量:179
采纳率:0%
帮助的人:0
展开全部
这种现象很正常 浏览器的内核不一样
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式