所以我想做的是让 jQuery 记住点击了什么。
所以说用户点击了一个列表项,也点击了另一个列表项。我将如何存储用户单击的两个项目类。
这是我目前拥有的
$(document).ready(function() {
$('#terms-product_cat ul li').on('click', function(event) {
$(this).addClass('current-term');
window.localStorage['temp_type'] = $(this).find('label').attr('class');
});
alert(window.localStorage['temp_type']);
});