以文本方式查看主题

-  课外天地 李树青  (http://www.njcie.com/bbs/index.asp)
--  Web技术  (http://www.njcie.com/bbs/list.asp?boardid=28)
----  课上练习代码——鼠标移动上去变换图片  (http://www.njcie.com/bbs/dispbbs.asp?boardid=28&id=1514)

--  作者:admin
--  发布时间:2015/5/26 12:13:05
--  课上练习代码——鼠标移动上去变换图片

<pre>

 

<html>

<head>

    <meta http-equiv="Content-Type" c/>

    <title>无标题文档</title>

</head>

<body>

<p>移动鼠标上去看看效果<br/>

    <img src="images/click_green.gif" width="100" height="50"

         border="0" alt="Example button" name="button"

         onmouseover="document.images[0].src=\'images/click_red.gif\'"

         onmouseout="document.images[0].src=\'images/click_green.gif\'"/>

</p>

</body>

</html>

</pre>