easyui事件和方法的调用

事件:
$('#ff').window({
    onResize:function(width, height){
        alert(width+"|"+height);
    }
});

调用方法:
$('#ff').window('refresh','www.baidu.com');


获得属性:
$('#ff').window('options')['width'];

$('p').panel().title


设置属性:
$('p').panel({tt:'asdf'})

你可能感兴趣的:(UI)