我試圖通過將鼠標移到另一圖像上來更改我的div內部的圖像。但是,當我將鼠標移過時,我無法插入第二張圖像,而當我離開鼠標時,我無法將第一張圖像帶回。用jquery更改圖像背景
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>
大加讚賞 –