jQuery:根据窗口大小删除添加/删除插件

时间:2013-04-07 12:58:14

标签: jquery responsive-design

我正在尝试制作完全响应的布局..,

我有以下代码根据浏览器大小添加功能,但如果调整浏览器大小,如何删除此插件的效果? (目前它仅在以特定大小加载页面时才有效,而不是在调整大小时)

$(document).ready(function(){
   $(window).resize(function() {
      if ($(window).width() >= 420) {
          // Enable the plugin to make the tab functionality...
          $( "#tabs" ).tabs();
      }
      else {
        // Code needed to completely disable the tab functionality??
      }
   });
}); 

1 个答案:

答案 0 :(得分:0)

为什么不尝试使用媒体查询来获取类,然后显示:none;。