首页上一页 1 下一页尾页 1 条记录 1/1页
javascript自学视频教程里面的源码怎么有的代码不能执行
发表在JavaScript答疑区
2015-06-10
是否精华
是
否
版块置顶:
是
否
15 、 16章节里面的很多js效果不能在360,世界之窗执行,但是能在IE执行。例如15.8图片渐变
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>图片渐变效果</title>
<img src="1.jpg" width="100" height="100" name="myImage" border="1" style="filter:alpha(opacity=0)">
<script language="JavaScript">
var b = 1;
var c = true;
function latent(){
if(document.all)
if(c == true)
b++;
else
b--;
if(b==100){
b--;
c = false
}
if(b==10){
b++;
c = true;
}
myImage.filters.alpha.opacity=b;
setTimeout("latent()",25);
}
latent();
</script>
</head>
<body>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>图片渐变效果</title>
<img src="1.jpg" width="100" height="100" name="myImage" border="1" style="filter:alpha(opacity=0)">
<script language="JavaScript">
var b = 1;
var c = true;
function latent(){
if(document.all)
if(c == true)
b++;
else
b--;
if(b==100){
b--;
c = false
}
if(b==10){
b++;
c = true;
}
myImage.filters.alpha.opacity=b;
setTimeout("latent()",25);
}
latent();
</script>
</head>
<body>
</body>
</html>