web專案引入jquery EasyUI的方法:先下載jQuery easyui外掛;然後將相關文件考到專案的webapp下面;最後頁面引入下面幾個文件即可使用jquery easyui的的所有功能了。
本教學操作環境:windows7系統、jquery3.2.1&&web2.0版本,此方法適用於所有品牌電腦。
推薦:jquery影片教學
web專案介紹jquery EasyUI的方法:
jQuery easyui
是一個基於jquery的用戶介面插件集合,可以做出各種酷炫頁面效果,大中型項目都可以使用些框架,非常好用,而且它有中文網,提供了大量的demo.下面我們看怎麼將它引入項目中
一:下載位址
http://www.jeasyui.com/download/index.PHP
二:下載解壓縮,將相關文件考到專案的webapp下面,因為它提供了說明文檔,demo,這些不需要考到項目中
#三:頁面引入下面幾個文件即可使用jquery easyui的的所有功能了
<link rel="stylesheet" type="text/css" href="<c:url value="/themes/default/easyui.css"/>"> <link rel="stylesheet" type="text/css" href="<c:url value="/themes/icon.css"/>"> <script type="text/JavaScript" src="<c:url value="/jquery.min.js"/>"></script> <script type="text/javascript" src="<c:url value="/jquery.easyui.min.js"/>"></script>
也可以將這個放到一個公開的頁面中,因為所有頁面都要引用這四句話。其它頁面引用這個公共頁面即可
<%@ include file="./commonpage/easyuisupport.jsp" %>
實例:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="<%=basePath%>"> <title>My JSP '01.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <!-- <link rel="stylesheet" type="text/css" href="styles.css"> --> <!-- 引入JQuery --> <script type="text/javascript" src="${pageContext.request.contextPath}/jquery-easyui-1.5.2/jquery.min.js"></script> <!-- 引入EasyUI --> <script type="text/javascript" src="${pageContext.request.contextPath}/jquery-easyui-1.5.2/jquery.easyui.min.js"></script> <!-- 引入EasyUI的中文国际化js,让EasyUI支持中文 --> <script type="text/javascript" src="${pageContext.request.contextPath}/jquery-easyui-1.5.2/locale/easyui-lang-zh_CN.js"></script> <!-- 引入EasyUI的样式文件--> <link rel="stylesheet" href="${pageContext.request.contextPath}/jquery-easyui-1.5.2/themes/default/easyui.css" type="text/css"/> <!-- 引入EasyUI的图标样式文件--> <link rel="stylesheet" href="${pageContext.request.contextPath}/jquery-easyui-1.5.2/themes/icon.css" type="text/css"/> <script type="text/javascript"> $(function(){ //console.info($('#dd2')); /*使用JavaScript动态创建EasyUI的Dialog的步骤: 1、定义一个div,并给div指定一个id 2、使用Jquery选择器选中该div,然后调用dialog()方法就可以创建EasyUI的Dialog */ $('#dd2').dialog();//使用默认的参数创建EasyUI的Dialog //使用自定义参数创建EasyUI的Dialog $('#dd3').dialog({ title: '使用JavaScript创建的Dialog', width: 400, height: 200, closed: false, cache: false, modal: true }); }); </script> </head> <body> This is my JSP page. <br> <div class="easyui-dialog" id="dd1" title="EasyUI Dialog" style="width: 500px;height: 300px;"> Hello World! </div> <div id="dd2">Dialog Content</div> <div id="dd3">Dialog Content</div> </body> </html>
ps:jquery引入路徑解釋:jquery/jquery-1.8.3.min.js以當前頁test.jsp為座標在目前資料夾中查找,由於test.jsp和jquery資料夾都在webroot目錄下所以不需要
'/',如果加'/'意思是從專案根目錄查找
相關免費學習推薦:js影片教學
以上是web專案怎麼引入jquery EasyUI的詳細內容。更多資訊請關注PHP中文網其他相關文章!