我第一次使用 jquery 布局。
我让它使用默认值工作:
$('body').layout(
{
applyDefaultStyles: true
});
但我想禁用部分的关闭
$('body').layout(
{
center:
{
closable: false
},
north:
{
closable: false
},
west:
{
closable: false
},
south:
{
closable: false
}
});
我现在只有基本的 html:
<div class="ui-layout-center">Center</div>
<div class="ui-layout-north">North</div>
<div class="ui-layout-south">South</div>
<div class="ui-layout-west">West</div>