</pre><p>关于页面自适应效果</p><p><pre name="code" class="javascript">
//监听窗口大小变化window.onresize = function(){setTimeout(redraw,300);};//改变表格宽高//自动调整function redraw(){var win_width = $("#content").width();$('#content').layout('panel', 'west').panel('resize',{width:win_width/3});$('#content').layout('panel', 'center').panel('resize',{width:win_width/3});$('#content').layout('panel', 'east').panel('resize',{width:win_width/3});$('#content').layout('resize');}