我想在用戶單擊關閉容器時將「hidden」類添加到「following_prompt」。當他們點擊關閉容器時,cookie會被設置。當cookie已設置時,向我的div添加一個類'隱藏'
MY JS:
jQuery(document).ready(function(){
// if the cookie exist, hide the element
var hide = Cookies.getJSON('hide');
if (hide && hide.element)
$(hide.element).hide();
$('#hideshow').on('click', function(event) {
$('.following_prompt').hide()
Cookies.set('hide', {element: '.following_prompt'}, { expires: 7 });
return false;
$('.following_prompt').addClass('hidden')
});
});
定義你的問題。 –
所以'element.addClass('hidden')'? – Andy
嘿@Andy可以做到 - 我對JS不太瞭解。我在哪裏放這個? –