我正在使用移动导航插件。为了运行它我必须像这样调用函数 $(#nav).easyPie();
现在我只想在屏幕大小/浏览器窗口大小小于757px时调用此函数。为了做到这一点,我有这个代码:
$(document).ready(function() {
$(window).resize(function() {
if (jQuery(window).width() < 757) {
$('#site-content-sidebar').addClass('acs');
$('#subnav').easyPie();
}
else {
$('#site-content-sidebar').removeClass('acs');
// This is where I need a way to say stop easyPie();
}
});
if (jQuery(window).width() < 757) {
$('#site-content-sidebar').addClass('acs');
$('#subnav').easyPie();
}
else {
$('#site-content-sidebar').removeClass('acs');
// This is where I need a way to say stop easyPie();
}
});
在else语句中(当屏幕大小超过757px时)我想要easyPie();函数在运行时停止运行/执行。我怎么能这样做?