我正在使用 jquery resizable 来调整 div 的大小
$("#mainDiv").resizable({
handles: 's, e',
start: function(event, ui) {
// want to perform some action here
},
resize: function(event, ui) {
// want to perform some action here }
});
现在我想根据以下事实做一些事情,即是否s
选择e
调整大小基本上调整大小是垂直还是水平如何做到这一点
谢谢