87,990
社区成员
发帖
与我相关
我的任务
分享<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<body >
<img id="im" src="写图片地址" />
<script>
document.getElementById('im').onmousemover = function(){
this.src = '写改变的地址';
};
document.getElementById('im').onmousemout = function(){
this.src = '写原来的地址';
};
</script>
</body>
</html>