我正在尝试通过将鼠标悬停在我的 div 中的图像来更改它,以便将其更改为不同的图像。但是,当我将鼠标悬停时,我无法插入第二张图像,并且当我离开鼠标时,我无法将第一张图像带回。
HTML
<head>
<link rel="stylesheet" href="TEST.css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('img').mouseenter(function(){
$(this).remove();
$(this).css("background-image", "url(http://www.clker.com/cliparts/d/1/4/6/11971185311926706097Gioppino_Basketball.svg.med.png)");
});
$('img').mouseleave(function(){
});
});
</script>
</head>
<body>
<div>
<img src="http://www.clker.com/cliparts/3/7/d/5/1197103862376117882Gioppino_Soccer_Ball.svg.med.png"/>
</div>
</body>