easyui-resizable 调整大小

来源:互联网 发布:数据分析的意义 编辑:程序博客网 时间:2024/06/08 10:39

$('#box').resizable({
maxWidth:800,
maxHeigth:600,
/*handles:'s',*/
onStarResize:function(e){
$(this).css('background-color','blue');
},
onResize:function(e){
$(this).css('background-color','yellow');
},
onStopResize:function(e){
$(this).css('background-color','red');
},
/*disabled:true,*/
});


0 0
原创粉丝点击