求高手看一段JS代码,为什么本地测试没问题,上传到网络上就不行呢,什么都不显示,谷歌和IE都不显示
<scriptlanguage="JavaScript"type="text/javascript">lastScrollY=0;functionheartBeat(){...
<script language="JavaScript" type="text/javascript">
lastScrollY=0;
function heartBeat(){
var diffY;
if (document.documentElement && document.documentElement.scrollTop)
diffY = document.documentElement.scrollTop;
else if (document.body)
diffY = document.body.scrollTop
else
{/*Netscape stuff*/}
//alert(diffY);
percent=.1*(diffY-lastScrollY);
if(percent>0)percent=Math.ceil(percent);
else percent=Math.floor(percent);
document.getElementById("peixun").style.top=parseInt(document.getElementById
("peixun").style.top)+percent+"px";
document.getElementById("zhaoshang").style.top=parseInt(document.getElementById
("peixun").style.top)+percent+"px";
lastScrollY=lastScrollY+percent;
//alert(lastScrollY);
}//from webjx.com
suspendcode12="<DIV id=\"peixun\" style='left:10px;POSITION:absolute;TOP:150px;'><a href='http://www.ht-gp.com/emctrain/peixun/'><img src='http://www.ht-gp.com/upload/C80-300.jpg' border=0 alt="电能质量与节电技术培训"></a></div>"
suspendcode14="<DIV id=\"zhaoshang\" style='right:10px;POSITION:absolute;TOP:150px;'><a href='http://www.ht-gp.com/zhaoshang/nbfzhaoshang/'><img src='http://www.ht-gp.com/upload/E80-300.jpg' border=0 alt="NBF零线电流阻断器招商函"></a></div>"
document.write(suspendcode12);
document.write(suspendcode14);
window.setInterval("heartBeat()",1);
</script> 展开
lastScrollY=0;
function heartBeat(){
var diffY;
if (document.documentElement && document.documentElement.scrollTop)
diffY = document.documentElement.scrollTop;
else if (document.body)
diffY = document.body.scrollTop
else
{/*Netscape stuff*/}
//alert(diffY);
percent=.1*(diffY-lastScrollY);
if(percent>0)percent=Math.ceil(percent);
else percent=Math.floor(percent);
document.getElementById("peixun").style.top=parseInt(document.getElementById
("peixun").style.top)+percent+"px";
document.getElementById("zhaoshang").style.top=parseInt(document.getElementById
("peixun").style.top)+percent+"px";
lastScrollY=lastScrollY+percent;
//alert(lastScrollY);
}//from webjx.com
suspendcode12="<DIV id=\"peixun\" style='left:10px;POSITION:absolute;TOP:150px;'><a href='http://www.ht-gp.com/emctrain/peixun/'><img src='http://www.ht-gp.com/upload/C80-300.jpg' border=0 alt="电能质量与节电技术培训"></a></div>"
suspendcode14="<DIV id=\"zhaoshang\" style='right:10px;POSITION:absolute;TOP:150px;'><a href='http://www.ht-gp.com/zhaoshang/nbfzhaoshang/'><img src='http://www.ht-gp.com/upload/E80-300.jpg' border=0 alt="NBF零线电流阻断器招商函"></a></div>"
document.write(suspendcode12);
document.write(suspendcode14);
window.setInterval("heartBeat()",1);
</script> 展开
2个回答
2013-03-12
展开全部
你这个代码一看就是DW自动生成的。
建议你自己学一下js,自己写,然后参考一下w3c的JS标准。
DW生成的JS多是只针对IE的,众所周知,IE早期版本(IE7以前的版本)基本上没多少w3C标准的东西,大多是自家标准。
当然,如果你说你的客户都是用IE的,那就无所谓了。
再多一句嘴,最新的IE9似乎都把IE7以前的那些东西都抛弃了,所以,就算是有IE用,你这代码 迟早有一天也是不兼容了。有用请把分给我吧!
建议你自己学一下js,自己写,然后参考一下w3c的JS标准。
DW生成的JS多是只针对IE的,众所周知,IE早期版本(IE7以前的版本)基本上没多少w3C标准的东西,大多是自家标准。
当然,如果你说你的客户都是用IE的,那就无所谓了。
再多一句嘴,最新的IE9似乎都把IE7以前的那些东西都抛弃了,所以,就算是有IE用,你这代码 迟早有一天也是不兼容了。有用请把分给我吧!
追问
好吧,不过目前急用,学习是一个长期的事情,以后会学的,虽然没解决我的问题,还是谢谢你~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询