使用localStorage添加Active Class

时间:2016-04-14 01:19:11

标签: javascript jquery html5

点击“a”链接时,我正在努力使用jquery和localStorage添加“活动”类。

这是我正在使用的布局:

    <div class="ordering-box" style="display: inline-block;">

        <?php $order_method = JRequest::getVar("orderto", ""); ?>
            <?php $order_method = $moduleParams->ordering_default_method; ?>

                <span class="ordering-box-text">chronologisch</span>

                <a class="order-by" href="#" onclick="document.K2Filter<?php echo $moduleId; ?>.orderto.value='asc'; submit_form_<?php echo $moduleId; ?>(); return false;">
                    <img class="ph" src="<?php echo JURI::base()."templates/template-src"?>/images/icons/chevron-down.png">
                </a>

                <a class="order-by" href="#" onclick="document.K2Filter<?php echo $moduleId; ?>.orderto.value='desc'; submit_form_<?php echo $moduleId; ?>(); return false;">
                    <img class="active-order" src="<?php echo JURI::base()."templates/template-src"?>/images/icons/chevron-up.png">
                </a>

    </div>

这是JS:

jQuery(document).ready(function($) { 

$(function () {
    $('.order-by').click(function () {

        $('.order-by > img').siblings().removeClass('active-order');
        $('.order-by > img').addClass('active-order');

        var activeIndex = $(this).index();
        localStorage.setItem('mySelectValue', activeIndex);
    });

});



jQuery(document).ready(function($) { 

    var activeIndex = localStorage.getItem('mySelectValue');

    if (isNan(activeIndex)) {
        console.log('nothing stored');
    } else {
        $('.order-by > img').addClass('active-order');

    }
});

这背后的想法是当点击正确的'a'链接时,底层img获得一个活跃的类(只是一个bg颜色)。由于浏览器在点击时刷新,我正在使用localStorage在下次加载时接受它...我在这里做错了什么?

1 个答案:

答案 0 :(得分:0)

正如@Andrew Dunai所说,从本地存储中读取时应该检查是否为空。

$('.order-by > img').siblings().removeClass('active-order');

在这一行中,您要从图像的兄弟中删除该类,而不是实际图像,因此请删除.siblings()

当您从本地存储中读取并尝试将类添加到活动订单时,您正在选择每个图像。您需要指定与存储在本地存储中的索引匹配的特定密钥。我在这里使用eq()

if (activeIndex === null) {
  console.log('nothing stored');
} else {
  $('.order-by > img').removeClass('active-order'); // remove active class from all
  $('.order-by').eq(activeIndex).find('img').addClass('active-order'); // add class to specified order
}

此外,在存储索引时,您需要知道span.ordering-box-text将位于索引0处,因此您应该将索引递减1。

localStorage.setItem('mySelectValue', $(this).index() - 1); // -1 because there is a span at index 0

JSFiddle