滚动字幕问题
ocument.write ("<marquee scrollamount='1' scrolldelay='30' direction= 'up' width='210' id=jsie height='145' onmouseover=jsie.stop() onmouseout=jsie.start()>"); for (i=0;i<index;i++){
document.write (" <a href="+link[i]+" ><font size=3 color=#cd0000>");
document.write (text[i] + "</font></A><br>");
}
document.write ("</marquee>")
代码是对的,可是在不同的电脑上的字体大小有可能是不一样的,
显示的效果就不一样了
我想将font 属性改成span,然后用内部的样式定义字体
即document.write (" <a href="+link[i]+" ><span style="font-size:3;color:#cd0000">");
document.write (text[i] + "</span></A><br>");
可是内容显示不出来
望大家帮我看看哪里错了