主题:  帮帮忙看看错误在哪?

able

职务:普通成员
等级:1
金币:0.0
发贴:54
#12004/9/8 19:46:03
由于没有接触过PHP做的网页,下面这个网址里新闻中心的内容为什么字体重叠了。



请各位大虾帮帮给看看!~谢谢!~~



www.tjhuachen.com/main.php




下面是欠新闻的代码:



<SCRIPT language="">
var scrollerwidth=140
var scrollerheight=150
var scrollerbgcolor=''
file://3000 miliseconds=9 seconds
var pausebetweenimages=4000



var slideimages=new Array()




<?php
$l=0;
$n=0;
while($l<3){



$m=0;
echo "slideimages[".$l."]='";
$slide="";
do{
if($n<$totalRows_news){
$slide.="<a href=\"news_detail.php?id=".$row_news['id']."\" target=\"_blank\">·".$row_news['title']."</a><br>";
$m++;
}else{
$m=3;

}
$n++;



}while($m<3 && ($row_news=mysql_fetch_assoc($news)))
?>
<?php
echo $slide;
echo "'\r\n";
$l++;
}
?>




if (slideimages.length>1)
i=2
else
i=0



function move1(whichlayer){
tlayer=eval(whichlayer)
if (tlayer.top>0&&tlayer.top<=4){
tlayer.top=0
setTimeout("move1(tlayer)",pausebetweenimages)
setTimeout("move2(document.main.document.second)",pausebetweenimages)
return
}
if (tlayer.top>=tlayer.document.height*-1){
tlayer.top-=4
setTimeout("move1(tlayer)",100)
}
else{
tlayer.top=scrollerheight
tlayer.document.write(slideimages)
tlayer.document.close()
if (i==slideimages.length-1)
i=0
else
i++
}
}



function move2(whichlayer){
tlayer2=eval(whichlayer)
if (tlayer2.top>0&&tlayer2.top<=4){
tlayer2.top=0
setTimeout("move2(tlayer2)",pausebetweenimages)
setTimeout("move1(document.main.document.first)",pausebetweenimages)
return
}
if (tlayer2.top>=tlayer2.document.height*-1){
tlayer2.top-=4
setTimeout("move2(tlayer2)",100)
}
else{
tlayer2.top=scrollerheight
tlayer2.document.write(slideimages)
tlayer2.document.close()
if (i==slideimages.length-1)
i=0
else
i++
}
}



function move3(whichdiv){
tdiv=eval(whichdiv)
if (tdiv.style.pixelTop>0&&tdiv.style.pixelTop<=4){
tdiv.style.pixelTop=0
setTimeout("move3(tdiv)",pausebetweenimages)
setTimeout("move4(second2)",pausebetweenimages)
return
}
if (tdiv.style.pixelTop>=tdiv.offsetHeight*-1){
tdiv.style.pixelTop-=4
setTimeout("move3(tdiv)",100)
}
else{
tdiv.style.pixelTop=scrollerheight
tdiv.innerHTML=slideimages
if (i==slideimages.length-1)
i=0
else
i++
}
}



function move4(whichdiv){
tdiv2=eval(whichdiv)
if (tdiv2.style.pixelTop>0&&tdiv2.style.pixelTop<=4){
tdiv2.style.pixelTop=0
setTimeout("move4(tdiv2)",pausebetweenimages)
setTimeout("move3(first2)",pausebetweenimages)
return
}
if (tdiv2.style.pixelTop>=tdiv2.offsetHeight*-1){
tdiv2.style.pixelTop-=4
setTimeout("move4(second2)",100)
}
else{
tdiv2.style.pixelTop=scrollerheight
tdiv2.innerHTML=slideimages
if (i==slideimages.length-1)
i=0
else
i++
}
}



function startscroll(){
if (document.all){
move3(first2)
second2.style.top=scrollerheight
}
else if (document.layers){
move1(document.main.document.first)
document.main.document.second.top=scrollerheight+5
document.main.document.second.visibility='show'
}
}



window.onload=startscroll



if (document.layers)
document.write(slideimages[0])



if (document.layers)
document.write(slideimages[1])



if (document.layers)
document.write(slideimages[0])



if (document.all){
document.writeln('<span id="main2" style="position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hiden;background-color:'+scrollerbgcolor+'">')
document.writeln('<div style="position:absolute;width:'+scrollerwidth+';height:'+scrollerheight+';clip:rect(0 '+scrollerwidth+' '+scrollerheight+' 0);left:0;top:0">')
document.writeln('<div id="first2" style="position:absolute;width:'+scrollerwidth+';left:0;top:1;">')
document.write(slideimages[0])
document.writeln('</div>')
document.writeln('<div id="second2" style="position:absolute;width:'+scrollerwidth+';left:0;top:0">')
document.write(slideimages[1])
document.writeln('</div>')
document.writeln('</div>')
document.writeln('</span>')
}
</SCRIPT>



Mike

职务:版主
等级:6
金币:11.0
发贴:5148
#22004/9/8 20:49:18
在JAVA中欠PHP
我觉得还是在PHP中嵌<script>
i.e.

$content = "<left>
<script language=\"javascript1.2\">
var scrollerwidth=200
var scrollerheight=40
var scrollerbgcolor='transparent'
var scrollerbackground='scrollerback.gif'
var messages=new Array()
............."

另外不知你有没有试过<marquee>
如果可以,干吗不用,把那么简单的事情复繁杂化,浏览器太耗资源。

<marquee....控制参数设置 长。。宽。。高。。速度。。>
echo"<center><a href='index.php?...=$row->id.........
</marquee>


这里面
<a href='index.php?option=com_rsgallery&page=inline&id=$row->id&catid=$row->gallery_id&limitstart=$limitstart'><img src='$thumbnailpath$row->name' border='0'></a></center>
等同于你里面的新闻链接代码,只不过它调用了一张图片。
我肯定你的PHP代码没问题。问题在JAVA控制上有问题。PHP和ASP不一样和HTML结合方便。

编辑历史:[此帖最近一次被 iamdaijun 编辑过(编辑时间:2004-09-08 20:59:12)]