我通常使用插件创建脚本,在一个DIV
带有特定的内部ID
,所以当我想清除时,只需删除它ID
就会SCRIPT
和他一起去。
在你的情况下..
$(document).ready(function(){
$(window).resize(function() {
if ($(window).width() >= 420) {
// Enable the plugin to make the tab functionality...
var tempScript = '<div id="newTempId"><script type="text/javascript" src="../js/plugInScript.js"></script></div>';
$('body').append(tempScript); // append the DIV with the PlugIn script inside
$( "#tabs" ).tabs();
}
else {
// Code needed to completely disable the tab functionality??
$( "#tabs" ).tabs({ disabled: [ 0, 2 ] }); // see API info at http://api.jqueryui.com/tabs/#option-disabled
$('newTempId').remove(); // Remove the DIV that include the script
}
});
});
OR/And... 包含一个基于窗口大小的响应式 CSS 文件。
<link href="../css/responsive_style.css" rel="stylesheet" type="text/css" media="screen and (min-width:419px)" />
希望对你有帮助,祝你好运