easyui使用

Posted wangfd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了easyui使用相关的知识,希望对你有一定的参考价值。

easyui的使用规则:

在本文中,采用jquery-easyui-1.2.6版本进行开发,资源下载,密码:72zk

结构目录:

技术分享图片

首先:引入js文件,easyui是基于jquery,所以要引入jquery.js文件,因为这边使用的是jquery-easyui-1.2.6,与其配合度很高的是jquery-1.7.2.min,在easyui目录下就有

<script type="text/javascript" src="js/jquery-easyui-1.2.6/jquery-1.7.2.min.js" ></script>

其次:引入easyui.js

<script type="text/javascript" src="js/jquery-easyui-1.2.6/jquery.easyui.min.js" ></script>

记住:以上两个js文件是必须的。

若我们需要加载样式、图片样式、以及中文版本,则需引入以下文件

<link rel="stylesheet" href="js/jquery-easyui-1.2.6/themes/default/easyui.css" />
<link rel="stylesheet" href="js/jquery-easyui-1.2.6/themes/icon.css" />
<script type="text/javascript" src="js/jquery-easyui-1.2.6/locale/easyui-lang-zh_CN.js" ></script>

总结:我们常用的是引入以下js、css

<script type="text/javascript" src="js/jquery-easyui-1.2.6/jquery-1.7.2.min.js" ></script>
<script type="text/javascript" src="js/jquery-easyui-1.2.6/jquery.easyui.min.js" ></script>
<link rel="stylesheet" href="js/jquery-easyui-1.2.6/themes/default/easyui.css" />
<link rel="stylesheet" href="js/jquery-easyui-1.2.6/themes/icon.css" />
<script type="text/javascript" src="js/jquery-easyui-1.2.6/locale/easyui-lang-zh_CN.js" ></script>

 

如果在开发中。我们使用easyloader来加载的话,我们可以直接引用以下文件(不推荐)

<script type="text/javascript" src="js/jquery-easyui-1.2.6/jquery-1.7.2.min.js" ></script>
<script type="text/javascript" src="js/jquery-easyui-1.2.6/easyloader.js" ></script>

 

以上是关于easyui使用的主要内容,如果未能解决你的问题,请参考以下文章

Jquery插件 easyUI属性汇总

easyui dialog弹出框的遮罩只遮罩iframe内的区域,怎样能遮罩整个页面

求jquery easyui中使用的遮罩层(高亮层)代码,越简单越好!(要测试成功的!)

EasyUI闪屏,EasyUI页面加载提示:原理+代码+效果图

easyui中parser的简单用法

EasyUI中combobox的使用方法和一个代码实例