码迷,mamicode.com
首页 > 其他好文 > 详细

第一次使用easyUI

时间:2016-04-26 23:49:41      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:

一。项目结构图

技术分享

二。在WebContent下新建resource文件夹,在resource底下创建easyui。将easyUI包放入其中。

三。在springMVC-servlet.xml写入资源路径

<!-- 静态文件访问 -->
  <mvc:resources location="/resource/easyui/" mapping="/easyui/**"/>
    

四。新建index.jsp。

    <%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
    <link rel="stylesheet" type="text/css" href="/web/easyui/themes/default/easyui.css"/>    
    <link rel="stylesheet" type="text/css" href="/web/easyui/themes/icon.css"/>    
    <script type="text/javascript" src="/web/easyui/jquery.min.js"></script>    
    <script type="text/javascript" src="/web/easyui/jquery.easyui.min.js"></script>    
    <script type="text/javascript" src="/web/easyui/easyui-lang-zh_CN.js"></script>  
     <script type="text/javascript">
     $(function(){
         $(‘#dd‘).dialog({    
              title: ‘My Dialog‘,    
              width: 400,    
              height: 200,    
              closed: false,    
              cache: false,        
              modal: true
              });
     });
     
     </script>
<body>
<div id="dd">
<form action="/web/user/login" method="post">
        <p>
            <label>账号:</label><input type="text" name="userName" />
        </p>
        <p>
            <label>密码:</label><input type="password" name="password" />
        </p>
        <p>
            <input type="submit" value="登录" />&nbsp;<a href="/web2/reg.jsp">注册</a>
        </p>
        <p>${message }</p>
    </form>
</div>
 
</body>
</html>

五。导入文件(第四步说明)

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

六。设置登录窗体

 <script type="text/javascript">
     $(function(){
         $(‘#dd‘).dialog({    
              title: ‘My Dialog‘,    
              width: 400,    
              height: 200,    
              closed: false,    
              cache: false,        
              modal: true
              });
     });
     
     </script>
<body>
<div id="dd">
............表单
...............
</div>

七.登录页面

技术分享

 

第一次使用easyUI

标签:

原文地址:http://www.cnblogs.com/husuihu/p/5436890.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!