loading jquery loading 加载的效果,图片的用的是百度图片,方便观看

<%@ page contentType="text/html;charset=UTF-8"%>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<html>
<head>
<title>日志管理</title>
<c:set var="ctx" value="${pageContext.request.contextPath }"></c:set>
<meta name="decorator" content="default" />
<script type="text/javascript">
 function page(n, s) {
  $("#pageNo").val(n);
  $("#pageSize").val(s);
  $("#searchForm").submit();
  return false;
 }
</script>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
 $(window).load(function() {
  $("#loading").hide();
 })
</script>
 
<link href="/jeesite/static/jquery/loading.css" rel="stylesheet"/>
 
<link href="/jeesite/jquery-jbox/2.3/Skins/Bootstrap/jbox.min.css" rel="stylesheet" />
 <link href="/jeesite/jquery-jbox/2.3/Skins/Bootstrap/loading.css" rel="stylesheet" />
 
 <link href="/jeesite/jquery-jbox/2.3/Skins/Bootstrap/jbox.min.css" rel="stylesheet" />
 
<link href="/jeesite/static/common/jeesite.min.css" type="text/css" rel="stylesheet" />
<link href="/jeesite/static/common/load.css" type="text/css" rel="stylesheet" />
<style type="text/css">
#loading {
 position: absolute;
 width: 300px;
 top: 0px;
 left: 50%;
 margin-left: -150px;
 text-align: center;
 padding: 7px 0 0 0;
 font: bold 11px Arial, Helvetica, sans-serif;
}
</style>

</head>
<body>
  <ul class="nav nav-tabs"> 
    <li class="active"><a href="${ctx}/sys/log/">日志列表</a></li> 
  </ul> 
 <form:form id="searchForm" action="${ctx}/sys/log/" method="post"
  class="breadcrumb form-search">
  <input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}" />
  <input id="pageSize" name="pageSize" type="hidden"
   value="${page.pageSize}" />
  <div>
   <label>操作菜单:</label><input id="title" name="title" type="text"
    maxlength="50" class="input-mini" value="${log.title}" /> <label>用户ID:</label><input
    id="createBy.id" name="createBy.id" type="text" maxlength="50"
    class="input-mini" value="${log.createBy.id}" /> <label>URI:</label><input
    id="requestUri" name="requestUri" type="text" maxlength="50"
    class="input-mini" value="${log.requestUri}" />
  </div>
  <div style="margin-top: 8px;">
   <label>日期范围:&nbsp;</label><input id="beginDate" name="beginDate"
    type="text" readonly="readonly" maxlength="20"
    class="input-mini Wdate"
    value="<fmt:formatDate value="${log.beginDate}" pattern="yyyy-MM-dd"/>"
    onclick="WdatePicker({dateFmt:‘yyyy-MM-dd‘,isShowClear:false});" />
   <label>&nbsp;--&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</label><input
    id="endDate" name="endDate" type="text" readonly="readonly"
    maxlength="20" class="input-mini Wdate"
    value="<fmt:formatDate value="${log.endDate}" pattern="yyyy-MM-dd"/>"
    onclick="WdatePicker({dateFmt:‘yyyy-MM-dd‘,isShowClear:false});" />&nbsp;&nbsp;
   &nbsp;<label for="exception"><input id="exception"
    name="exception" type="checkbox"
    ${log.exception eq ‘1‘?‘ checked‘:‘‘} value="1" />只查询异常信息</label>
   &nbsp;&nbsp;&nbsp;<input id="btnSubmit" class="btn btn-primary"
    type="submit" value="查询" />&nbsp;&nbsp;
  </div>
 </form:form>
 <sys:message content="${message}" />
 <table id="contentTable"
  class="table table-striped table-bordered table-condensed">
  <thead>
   <tr>
    <th>操作-菜单</th>
    <th>操作用户</th>
    <th>所在公司</th>
    <th>所在部门</th>
    <th>URI</th>
    <th>提交方式</th>
    <th>操作者IP</th>
    <th>操作时间</th>
  </thead>
  <div id="loading">数据正在加载.....请稍候<img src="http://z.k1982.com/design_img/201408/2014081721544114661.gif" width="20000" height="2000" alt="loading.." /></div> 
  
  <tbody>
   <%
    request.setAttribute("strEnter", "\n");
    request.setAttribute("strTab", "\t");
   %>
   <c:forEach items="${page.list}" var="log">
    <tr>
     <td>${log.title}</td>
     <td>${log.createBy.name}</td>
     <td>${log.createBy.company.name}</td>
     <td>${log.createBy.office.name}</td>
     <td><strong>${log.requestUri}</strong></td>
     <td>${log.method}</td>
     <td>${log.remoteAddr}</td>
     <td><fmt:formatDate value="${log.createDate}" type="both" /></td>
    </tr>
    <c:if test="${not empty log.exception}">
     <tr>
      <td colspan="8"
       style="word-wrap: break-word; word-break: break-all;">
       <%--      用户代理: ${log.userAgent}<br/> --%> <%--      提交参数: ${fns:escapeHtml(log.params)} <br/> --%>
       异常信息: <br />
       ${fn:replace(fn:replace(fns:escapeHtml(log.exception), strEnter, ‘<br/>‘), strTab, ‘&nbsp; &nbsp; ‘)}
      </td>
     </tr>
    </c:if>
   </c:forEach>
  </tbody>
 </table>
 <div class="pagination">${page}</div>
</body>
</html>
时间: 2024-10-28 19:29:01

loading jquery loading 加载的效果,图片的用的是百度图片,方便观看的相关文章

javaScript和jQuery自动加载方法

一.JavaScript自动加载 ①在文本中用onload: 当页面中所有内容(包括图片)加载完后再执行onload,如下: 1 <body ></body> <!-- 当有一个onload --> 2 <body ></body> <!-- 当有多个onload用分号隔开,依次弹出 2 3 4 --> ②在脚本中用window.onload: 当页面中的所有内容(包括图片)加载完后再执行window.onload,如下: windo

jquery mobile在页面加载时添加加载中效果 document.ready 和window.onload执行顺序比较

想要添加这个效果,先来弄明白页面的加载和事件执行顺序,看这个简单例子: 1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head > 3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 4 <title>验证加载顺序</title> 5 <s

Jquery页面加载效果

1.说明 Jquery页面加载可实现异步请求时提示"请稍后,正在加载..."效果,同步请求不可用(即ajax async: false).本文地址:http://www.cnblogs.com/lengzhan/p/6423312.html 2.代码 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43

jquery Mobile点击显示加载等待效果

点击某个按钮或链接时,触发等待加载效果: Xml代码   <script> <!-- $(document).bind("mobileinit", function(){ }); $( function() { //默认设置,一个小圈圈在转 $('#default').live( 'tap', function() { $.mobile.loadingMessageTextVisible = false; $.mobile.showPageLoadingMsg();

JQuery缓冲加载图片插件lazyload.js的使用方法

lazyload.js是一个基于JQuery的插件,可以用来缓冲加载图片.如果一个网页很长并且有很多图片的话,下载图片就需要很多时间,那么就会影响整个网页的加载速度,而这款延迟加载插件,会通过你的滚动情况来加载你需要看的图片,然后它才会从后台请求下载图片,最后显示出来.通过这个插件,可以在需要显示图片的时候,才下载图片,从而可以减少服务器的压力,提高页面加载速度. Lazy Load 插件原理 修改目标img元素的src属性为orginal属性,从而中断图片的加载.检测滚动状态,然后把网页可视区

cocos2dx loading界面 预加载资源 与 资源释放

预加载图片: 1.CCTextureCache::sharedTextureCache()->addImage("icon.png"); 2.CCTextureCache::sharedTextureCache()->addImageAsync("icon.png",this,callfuncO_selector(MainLayerLoading::loadingCallBack)); 使用加载的缓存图片: CCSprite* sp =CCSprite:

jQuery顺序加载图片(终版)

这一篇是对上一篇(jQuery顺序加载图片(初版)--http://www.cnblogs.com/newbie-cc/p/3707504.html)的改进. ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 function loadImage(imgList,callback){         if(!$.isArray(imgList) || !$.isFunction(callback)) return ;         var imageDat

WPF防止界面卡死并显示加载中效果

原文:WPF防止界面卡死并显示加载中效果 网上貌似没有完整的WPF正在加载的例子,所以自己写了一个,希望能帮到有需要的同学 前台: <Window x:Class="WpfApplication1.Loading" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml

js jquery 页面加载初始化方法

一.js页面加载初始化方法 // 1.在body里面写初始化方法. <body onload='init()'> </body> <script type="text/javascript"> function init(){ // 初始化内容 } </script> // 2.window.onload=function(){} <script type="text/javascript"> window