我有一個簡單的jQuery圖像切換失敗。簡單的jQuery圖像更改onclick失敗
$('.heart_img').click(function()
{
var heart_type = $(this).attr('src');
//alert(heart_type);
if (heart_type == 'images/unheart.png')
{
//alert('uheart');
$(this).attr('src','images/heart.png');
}
else if (heart_type == 'images/heart.png');
{
$(this).attr('src','images/unheart.png');
}
});
警報火災時正確不註釋掉所以和圖像是在正確的位置,所以我不知道是什麼問題。
是在heart_img類或一個ID?如果只有一個,那麼通常最好有一個ID,因爲可以有一個以上的類...... HTML的外觀是什麼樣的? – 2010-06-16 03:40:44
你的代碼應該可以正常工作。 – rahul 2010-06-16 03:44:44
如果只有2個圖像,則可以在else之後刪除(...)。 – 2010-06-16 03:45:32