0
我使用本地存儲將值保存到數組中,並根據數組中的值更改錨點的樣式,樣式適用於單擊其中一個錨點時並刷新,但是當我選擇兩個錨點並刷新樣式消失。樣式只適用於刷新的一個錨點
$(function(){
var favorite = localStorage.getItem('favorite');
if (favorite !== null){
favorite = JSON.parse(favorite) || [];
}
$('.favorites').each(function() {
if($(this).attr('data-petid') == favorite){
$(this).css('background-image', 'url(../assets/img/heart-red.svg)');
$(this).css('background-color', '#fefefe');
}
});
// This function changes the color of the heart on the landing page and stores the values into local storage
$(".favorites").click(function() {
var favorite = localStorage.getItem('favorite');
var petid = $(this).attr('data-petid');
var index;
favorite = JSON.parse(favorite) || [];
if ((index = favorite.indexOf(petid)) === -1) {
favorite.push(petid);
$(this).css('background-image', 'url(../assets/img/heart-red.svg)');
$(this).css('background-color', '#fefefe');
}else {
$(this).css('background-image', 'url(../assets/img/heart-full.svg)');
$(this).css('background-color', '#25aae3');
favorite.splice(index, 1);
}
localStorage.setItem('favorite', JSON.stringify(favorite));
});
});
我一直在努力了一個多小時這出一點點,你得到它像一個幾秒鐘。感謝您的知識和幫助!它非常完美! – user2677350