在通过 CSS 媒体查询更改 css 值后,我试图阻止 resize 函数触发。这不起作用......我希望“有一个切换”只出现一次。我该如何杀死它?
$(window).bind('resize', function(event) {
if ($('#toggle').css('display') == 'none')
{
console.log("there's no toggle!");
}
else {
console.log("there IS a toggle!");
return false; // trying to stop the function
}
});