问候所有:这是我的简单代码,为什么我的javascript在我的页面上显示为文本?任何帮助将非常感谢,也任何提示将不胜感激。提前谢谢你
<html>
<head><title>jsn massage - home page</title>
<script type="text/javascript">
var image1 = new Image()
image1.src = "images/100_0350a.jpg"
var image2 = new Image()
image2.src = "images/circle.jpg"
var image3 = new Image()
image3.src = "images/AddisonStudioI.jpg"
</script>
</head>
<body>
<img src="images/100_0350a.jpg" name="slide" width="400" height="400>
<script type="text/javascript">
var step=1;
function slideit()
{
document.images.slide.src=eval("image"+step+".src");
if(step<3)
step++;
else
step=1;
setTimeout("slideit()", 2500);
}
slideit();
</script>
</body>
</html>
答案 0 :(得分:1)
<img src="images/100_0350a.jpg" name="slide" width="400" height="400>
你应该正确关闭它。
<img src="images/100_0350a.jpg" name="slide" width="400" height="400" />
答案 1 :(得分:1)
您忘记在height="400"
<img src="images/100_0350a.jpg" name="slide" width="400" height="400"/>
答案 2 :(得分:1)
你的身高属性缺少结束引号,img标签应该正确关闭。
<img src="images/100_0350a.jpg" name="slide" width="400" height="400"/>
答案 3 :(得分:0)
在css中添加这段代码
script { display: none !important; }