有人可以請指導我這段代碼。目前,當我將鼠標懸停在一個鏈接上時,它會更改另一個div上的背景顏色。我不想更改背景顏色,而想更換爲其他背景圖片。懸停改變背景圖像而不是背景顏色
<html>
<head>
<title>Sample</title>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<style>
body {
background: #ccc;
transition:0.5s;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
$("#div-1").hover(
function() {
$('#top_section').css("background", "#ff9900");
},
function() {
$('#top_section').css("background", "#ccc");
}
);
$("#div-2").hover(
function() {
$('#top_section').css("background", "red");
},
function() {
$('#top_section').css("background", "#ccc");
}
);
$("#div-3").hover(
function() {
$('#top_section').css("background", "yellow");
},
function() {
$('#top_section').css("background", "#ccc");
}
);
});
</script>
</head>
<body>
<a id="div-1" href="#"> Orange</a>
<a id="div-2" href="#">Red</a>
<a id="div-3" href="#">Yellow</a>
<div id="top_section" style="height:100px;width:100px;"></div>
</body>
</html>
我轉產$('#top_section').css("background", "#ff9900");
到$('#top_section').css("background-image", "/images/image1.jpg");
,但沒有發生的時候我將鼠標放在鏈接。 非常感謝你,
你必須糾正:.css(「background-image」,「/images/image1.jpg」);'到'.css(「background-image」,「url('/ images/image1 .jpg')「);' – emmanuel 2014-10-17 12:09:49