jquery easyui使用心得


Posted in Javascript onJuly 07, 2014

第一步下载jquery easyui 

下载地址:https://3water.com/codes/70218.html

第二步创建Java web项目

第三步导入相关的文件。。目录结构如下

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

<link rel="stylesheet" type="text/css" href="easyui/themes/default/easyui.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" >
<link rel="stylesheet" type="text/css" href="easyui/themes/icon.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > 
<script type="text/javascript" src="easyui/jquery.min.js"></script>
<script type="text/javascript" src="easyui/jquery.easyui.min.js"></script>

jquery easyui使用心得

下载个jquery-easyui-1.3.2使用,把他导入到myeclipse10里,jquery-1.7.2.min.js报错。

解决办法:

1、选中报错的jquery文件“jquery-1.7.2.min.js”。
2、右键选择 MyEclipse-->Exclude From Validation 。
3、再右键选择 MyEclipse-->Run Validation 即可。

ui1的源码:

<%@ 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%>" rel="external nofollow" >
  
  <title>jquery easyui test 1</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" rel="external nofollow" >
-->
  <link rel="stylesheet" type="text/css" href="easyui/themes/default/easyui.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" >
  <link rel="stylesheet" type="text/css" href="easyui/themes/icon.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > 
  <!-- <link rel="stylesheet" type="text/css" href="easyui/themes/icon.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > -->
<!-- <link rel="stylesheet" type="text/css" href="easyui/demo.css" rel="external nofollow" > -->
<script type="text/javascript" src="easyui/jquery.min.js"></script>
<script type="text/javascript" src="easyui/jquery.easyui.min.js"></script>
 </head>
 
 <body>
  <h2>Basic Panel</h2>
<p>The panel is a container for other components or elements.</p>
<div style="margin:20px 0 10px 0;">
<a href="#" rel="external nofollow" rel="external nofollow" class="easyui-linkbutton" onclick="javascript:$('#p').panel('open')">Open</a>
<a href="#" rel="external nofollow" rel="external nofollow" class="easyui-linkbutton" onclick="javascript:$('#p').panel('close')">Close</a>
</div>
<div id="p" class="easyui-panel" title="Basic Panel" style="width:700px;height:200px;padding:10px;">
<p style="font-size:14px">jQuery EasyUI framework helps you build your web pages easily.</p>
<ul>
<li>easyui is a collection of user-interface plugin based on jQuery.</li>
<li>easyui provides essential functionality for building modem, interactive, javascript applications.</li>
<li>using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.</li>
<li>complete framework for HTML5 web page.</li>
<li>easyui save your time and scales while developing your products.</li>
<li>easyui is very easy but powerful.</li>
</ul>
</div>

<div id="p" class="easyui-panel" style="width:500px;height:200px;padding:10px;"  
    title="My Panel" iconCls="icon-save" collapsible="true">  
  The panel content  
</div> 
 </body>
</html>

效果图:

jquery easyui使用心得

Javascript 相关文章推荐
比较简单实用的使用正则三种版本的js去空格处理方法
Nov 18 Javascript
js注意img图片的onerror事件的分析
Jan 01 Javascript
JS的replace方法详细介绍
Nov 09 Javascript
简介AngularJS中$http服务的用法
Feb 06 Javascript
JavaScript模拟数组合并concat
Mar 06 Javascript
JS去除字符串中空格的方法
Feb 14 Javascript
Vue.js -- 过滤器使用总结
Feb 18 Javascript
js 两个日期比较相差多少天的实例
Oct 19 Javascript
javascript高仿热血传奇游戏实现代码
Feb 22 Javascript
详解vue-cli中模拟数据的两种方法
Jul 03 Javascript
jQuery实现基本动画效果的方法详解
Sep 06 jQuery
分享一个vue实现的记事本功能案例
Apr 11 Vue.js
Node.js与PHP、Python的字符处理性能对比
Jul 06 #Javascript
我的Node.js学习之路(四)--单元测试
Jul 06 #Javascript
我的Node.js学习之路(三)--node.js作用、回调、同步和异步代码 以及事件循环
Jul 06 #Javascript
我的Node.js学习之路(二)NPM模块管理
Jul 06 #Javascript
我的Node.js学习之路(一)
Jul 06 #Javascript
javascript数组操作方法小结和3个属性详细介绍
Jul 05 #Javascript
jQuery打印指定区域Html页面并自动分页
Jul 04 #Javascript
You might like
如何写php程序?
2006/12/08 PHP
php下将XML转换为数组
2010/01/01 PHP
thinkphp 多表 事务详解
2013/06/17 PHP
关于ob_get_contents(),ob_end_clean(),ob_start(),的具体用法详解
2013/06/24 PHP
php字符串函数学习之strstr()
2015/03/27 PHP
在一个js文件里远程调用jquery.js会在ie8下的一个奇怪问题
2010/11/28 Javascript
用js实现table单元格高宽调整,兼容合并单元格(兼容IE6、7、8、FF)实例
2013/06/25 Javascript
jQuery.extend()的实现方式详解及实例
2013/06/29 Javascript
jQuery实现表格行上移下移和置顶的方法
2015/05/22 Javascript
JS表格组件神器bootstrap table详解(强化版)
2016/05/26 Javascript
基于JQuery实现分隔条的功能
2016/06/17 Javascript
JavaScript编程中实现对象封装特性的实例讲解
2016/06/24 Javascript
BootStrap初学者对弹出框和进度条的使用感觉
2016/06/27 Javascript
node.js的事件机制
2017/02/08 Javascript
JS实现数组简单去重及数组根据对象中的元素去重操作示例
2018/01/05 Javascript
vue打包的时候自动将px转成rem的操作方法
2018/06/20 Javascript
JavaScript中break、continue和return的用法区别实例分析
2020/03/02 Javascript
解决vue无法侦听数组及对象属性的变化问题
2020/07/17 Javascript
python用ConfigObj读写配置文件的实现代码
2013/03/04 Python
python写的一个squid访问日志分析的小程序
2014/09/17 Python
python写xml文件的操作实例
2014/10/05 Python
详解Python pygame安装过程笔记
2017/06/05 Python
Python探索之URL Dispatcher实例详解
2017/10/28 Python
python2使用bs4爬取腾讯社招过程解析
2019/08/14 Python
Python绘制二维曲线的日常应用详解
2019/12/04 Python
python实现每天自动签到领积分的示例代码
2020/08/18 Python
Python 3.9的到来到底是意味着什么
2020/10/14 Python
2014年会演讲稿范文
2014/01/06 职场文书
文体活动总结范文
2014/05/05 职场文书
网吧七夕活动策划方案
2014/08/31 职场文书
实习科室评语
2015/01/04 职场文书
质量保证书
2015/01/17 职场文书
结婚喜宴祝酒词
2015/08/10 职场文书
优秀教师主要事迹材料
2015/11/04 职场文书
vscode远程免密登入Linux服务器的配置方法
2022/06/28 Servers