有人可以向我解释一下如何在里面添加If如果我的意思是这样的话:
$(window).resize(function(){
if ($(window).width()<1000)
{
$('.search-trigger').on('click',function(){
if($('.search-overlay').hasClass('show'))
$('.search-overlay').removeClass('show');
}
else
{
$('.search-overlay').addClass('show');
}
});
}
});
如果浏览器窗口低于1000px,请在点击搜索按钮时打开其他搜索菜单样式(完整覆盖搜索页面)。我目前正在使用此代码,并在控制台中出现错误,即:
参数列表后的Uncaught SyntaxError:missing)
。 如果有人可以向我解释如何将If添加到If中,以修复我的搜索菜单.THANKS !!
答案 0 :(得分:1)
var smallerThanThousand = false;
$(window).resize(function(){
if ($(window).width()<1000)
{
smallerThanThousand = true;
}else{
smallerThanThousand = false;
}
});
$('.search-trigger').on('click',function(){
If(smallerThanThousand === true){
if($('.search-overlay').hasClass('show')){
$('.search-overlay').removeClass('show');
}
else
{
$('.search-overlay').addClass('show');
}
}
});