首页上一页 1 下一页尾页 2 条记录 1/1页
Java Script从入门到精通例9.3达不到预想效果
发表在JavaScript答疑区
2016-11-08
是否精华
是
否
版块置顶:
是
否
本人系统WIN10 64位,例9.3无论是我自己输入的代码,还是光盘文件课件附带的代码,360安全浏览器还是IE,都无法达到预想效果,请教一下,是什么情况?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<script language="javascript">
<!--
function visible(cursor,i)
{
if(i==0)
cursor.filters.alpha.opacity=100;
else
cursor.filters.alpha.opacity=30;
}
//-->
</script>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center" bgcolor="#CCCCCC"><img src="../../java script入门到精通/TM(视频讲解及实例源程序)/sl(实例源程序)/9/03/Temp.jpg" border="0" style="filter:alpha(opacity=100)" onmouseover="visible(this,1)" onmouseout="visible(this,0)" width="148 height="121"></td>
</tr>
</table>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<script language="javascript">
<!--
function visible(cursor,i)
{
if(i==0)
cursor.filters.alpha.opacity=100;
else
cursor.filters.alpha.opacity=30;
}
//-->
</script>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center" bgcolor="#CCCCCC"><img src="../../java script入门到精通/TM(视频讲解及实例源程序)/sl(实例源程序)/9/03/Temp.jpg" border="0" style="filter:alpha(opacity=100)" onmouseover="visible(this,1)" onmouseout="visible(this,0)" width="148 height="121"></td>
</tr>
</table>
</body>
</html>