我试图让Cookie记住最后一次点击后大约X分钟的按钮点击次数,即使重新加载页面,然后在点击X分钟后再次启用它,但我无法做到,是否有人帮助我去做? 这是Set限制代码,即时完成,我只需要为我设置一个cookie。
(function(){
var click_counter = 0;
jQuery('.button').on('click', function(event){
event.preventDefault();
var el = jQuery(this);
click_counter += 1;
if (!el.hasClass('inactive')){
// should be activated
};
if (click_counter >= 6){
// deactivate
el.addClass('inactive');
alert('Message');
};
});
})();
谢谢
答案 0 :(得分:0)
我想我理解,我会这样做: 试试这个:
function writeCookie (key, value, mins) {
var date = new Date();
// Get unix milliseconds at current time plus number of hours
date.setTime(+ date + (mins * 3600000)); //60 * 60 * 1000
window.document.cookie = key + "=" + value + "; expires=" + date.toGMTString() + "; path=/";
return value;
};
用法:
<script>
writeCookie ("myCookie", "clicked", 2);
</script>
//for 2 mins
我们想检查页面加载时间:
<script>
$c_value = document.cookie;
if ($c_value == "clicked") {
// whatever you code to deactivate is
}
</script>