我正在使用 interface.eyecon.ro/docs/resizable 中的 jQuery resizable 作为我正在处理的页面上的菜单。我需要设置一个 cookie(plugins.jquery.com/project/Cookie)来存储菜单 div 的高度,以便 div 在每次重新加载页面时都不会调整为原始 css 高度。
我一直在尝试修改来自http://www.shopdev.co.uk/blog/text-resizing-with-jquery/#comment-1044的代码(我知道该代码中有一些错误,但我已经让那个例子工作了)有一段时间了,但我无法让它工作。
我的代码在没有 cookie 的情况下看起来像这样:
$(document).ready(function() {
$('#resizeMe').Resizable( {
maxHeight: 600,
minHeight: 24,
handlers: {
s: '#resizeS'
},
onResize: function(size) {
$('#content_two', this).css('height', size.height - 6 + 'px');
$('#content').css('padding-top', size.height + 44 + 'px');
}
});
});
这是我第一次使用stackoverflow,我希望我在这里看到的所有好的答案也能解决这个问题:)
谢谢