我目前有一些問題得到一個mouseover和mouseout函數在jquery中工作。我有兩個名爲'images/doomsday.jpg'的圖像,另一個名爲'keep_calm.png',當鼠標懸停在它上面時,我想交換它,然後在沒有時交換。我已經包含了我目前正在嘗試使用的代碼,任何人都可以看到它的任何問題以及我出錯的地方嗎?圖片切換jquery mouseover
$(function() {
$("images/doomsday.jpg")
.mouseover(function() {
var src = $(this).attr("src").match(/[^\.]+/) + "images/keep_calm.png";
$(this).attr("src", src);
})
.mouseout(function() {
var src = $(this).attr("src").replace("images/keep_calm.png");
$(this).attr("src", src);
});
});