检测浏览器的宽度并关闭aria扩展的div

时间:2017-12-10 16:41:42

标签: jquery html

CODE:

$(window).on('resize', function(){
    if($(this).width() != width){
        width = $(this).width();
        if(width>=768){
            if($('search_xs').attr('aria-expanded')==='true'){
                $('search_xs').setAttribute('aria-expanded', false);
                console.log('error')
            }
        }
    }
});

在该代码上,只有console.log('error')无效。

我应该在哪里修理它?

1 个答案:

答案 0 :(得分:2)

您尝试使用<search_xs>找到元素class="search_xs"而不是元素。

为类使用正确的CSS选择器。

$('.search_xs')