使用JqueryEasyUI进行页面布局

下面为为大家介绍一种快速搭建页面布局的方法,那就是使用EasyUI进行布局。

在布局之前首先要从EasyUI包里面引用五个文件。

 

 
    --图片样式
    
    
    --使用语言

创建布局有很多种方法:

1. 通过标签创建布局

 id="cc" class="easyui-layout" style="width:600px;height:400px;">  

  data-options="region:'north',title:'North Title',split:true" style="height:100px;">

 

   data-options="region:'south',title:'South Title',split:true" style="height:100px;">

   data-options="region:'east',iconCls:'icon-reload',title:'East',split:true" style="width:100px;">

    data-options="region:'west',title:'West',split:true" style="width:100px;">

   data-options="region:'center',title:'center title'" style="padding:5px;background:#eee;">

 

 

2. 使用完整页面创建布局

 class="easyui-layout"> 

     data-options="region:'north',title:'North Title',split:true" style="height:100px;">

     data-options="region:'south',title:'South Title',split:true" style="height:100px;">

     data-options="region:'east',iconCls:'icon-reload',title:'East',split:true" style="width:100px;">

     data-options="region:'west',title:'West',split:true" style="width:100px;">   

    data-options="region:'center',title:'center title'" style="padding:5px;background:#eee;">

   >

   布局可以分为五个部分,东、西、南、北、中,其中“中”间部分是必须要有的,要写你的内容,其他的可以进行选择性的删除。

使用JqueryEasyUI进行页面布局_第1张图片

还可通过title来改变标题。

后面还会更新关于EasyUI方面的知识,请随时关注,谢谢!!!

你可能感兴趣的:(EasyUI)