鼠标滑过与离开

2019-08-14 10:20:26来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

<!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" xml:lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <title>Document</title>
</head>
<body>
    <img src="C:/Users/高萍/Desktop/前端学习/images/wuyifan.jpg" alt=""  id="pic"/>
    <script>
        var pic=document.getElementById("pic");
        pic.onmouseover=function(){
                    pic.src="C:/Users/高萍/Desktop/前端学习/images/zhangyixing.jpg";
        }
        pic.onmouseout=function(){
                pic.src="C:/Users/高萍/Desktop/前端学习/images/wuyifan.jpg";
        }
    </script>
</body>
</html>

  


原文链接:https://www.cnblogs.com/shanlu0000/p/11260828.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Vue学习之项目部分代码(十八)

下一篇:vue3.0 vue.config.js 配置实战