我正在开发的部分页面需要在用户单击按钮时将 $(window).resize 事件添加到 div 中,以便在使用窗口调整窗口大小和将其固定为原始大小之间切换:
function startResize() {
$(window).resize(function() {
$("#content").width(newWidth);
$("#content").height(newHeight);
});
}
我无法解决的是如何在再次单击按钮时“关闭”此事件,以便内容停止调整大小。
function endResize() {
// Code to end $(window).resize function
$("#content").width(originalWidth);
$("#content").height(originalHeight);
}
对此的任何帮助将不胜感激。