easyui 简单的尝试

最近在找工作,发现很多要求里都需要easyui,特来学习一下
学习网站:http://www.jeasyui.net/
下载easyui:http://www.jeasyui.com/download/index.php
下载完成后解压就好了

<%--
  Created by IntelliJ IDEA.
  User: hasee
  Date: 2017/2/9
  Time: 15:09
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title></title>
    <!-- 导入jQuery插件包 -->
    <script type='text/javascript' src="/ssm/static/jquery-easyui-1.5.1/jquery.min.js"></script>
    <!-- 导入jQuery EasyUI的插件包 -->
    <script type='text/javascript' src="/ssm/static/jquery-easyui-1.5.1/jquery.easyui.min.js"></script>
    <!-- 导入默认的easyui的css包 -->
    <link rel="stylesheet" type="text/css" href="/ssm/static/jquery-easyui-1.5.1/themes/default/easyui.css" />
    <!-- 导入图标包-->
    <link rel="stylesheet" type="text/css" href="/ssm/static/jquery-easyui-1.5.1/themes/icon.css"/>
</head>
</head>
<body>
<div class="easyui-dialog" style="width:400px;height:200px" data-options="title:'MyDialog',collapsible:true,iconCls:'icon-ok',onOpen:function(){}">
    dialog content.
</div>
</body>
</html>



猜你喜欢

转载自201609032307.iteye.com/blog/2356317