1.官網(wǎng)下載easyUI 的js 壓縮包。
http://www.jeasyui.com/download/index.php
解壓后的目錄為:

Paste_Image.png
2項(xiàng)目中導(dǎo)入需要的js 和css 文件。
<script type="text/javascript" src="../jquery/jquery.min.js" ></script>
//easyUI 以jquery 為基礎(chǔ)
<script type="text/javascript" src="../jquery/jquery.easyui.min.js"></script>//
<link type="text/css" rel="stylesheet" href="../css/default/easyui.css">
//所有css 在themes 目錄下,default 是藍(lán)色主題,gray 是灰色主題。
//easyui.css 包含了其它所有css 內(nèi)容
<link rel="stylesheet" href="../css/icon.css">
//引入圖標(biāo),同時(shí)需要icons 的圖片文件夾
<script src="../jquery/easyui-lang-zh_CN.js"></script>
//easyui 支持國際化,該js 文件在local 目錄下
引入后的項(xiàng)目目錄:

Paste_Image.png