分页查询时,使用cookie保存上次的查询条件。jQuery实现方法以及中间遇到的坑
今天做分页查询时需要在跳转页面时保存上次查询的条件,如下:
实现的大致思路就是用cookie本地保存。
其中需要用到jQuery.Cookie插件。
使用方法很简单:
存数据:$.cookie(“key”,”value”);
取数据:$.cookie(“key”);
我的实现方法就是在每次点击“查询”按钮时,把查询的条件放入cookie。
在页面初始化时,会调用jQuery,这时把cookie存放的值从新放入表单中。
整体页面(使用了bootstrap和jq,如查看页面,需要导下这两个的依赖):
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>视频管理</title>
<link rel="stylesheet" type="text/css"
href="${pageContext.request.contextPath}/css/init.css" />
<link rel="stylesheet" type="text/css"
href="${pageContext.request.contextPath}/css/bootstrap.min.css" />
<script src="${pageContext.request.contextPath}/js/jquery-3.2.1.min.js"></script>
<script src="${pageContext.request.contextPath}/js/jquery.cookie.js"></script>
<script src="${pageContext.request.contextPath}/js/bootstrap.min.js"></script>
<style type="text/css">
.head {
background-color: #EFEFF4;
font-size: 16px;
color: black;
padding: 20px;
font-size: 20px;
overflow: hidden;
margin-bottom: 10px;
} .table {
margin-top: 30px;
border: 1px solid #CCCCCC;
} .name_info {
color: red;
}
</style>
</head>
<body>
<form id="form" method="post">
<input type="hidden" name="_method" id="_method" value="DELETE" />
<input type="hidden" name="id" id="id" />
</form>
<div class="container-fluid">
<div id="row" class="head">
<div class="col-sm-10 col-md-8 col-lg-8">
<p>视频管理</p>
</div> <div id="row" class="col-sm-12 col-md-12">
<div class="col-xs-1">
<a href="#" id="batchDel" class="btn btn-danger btn">批量删除 <span
class="badge" id="badge_0">0</span></a>
</div>
<div class="col-xs-1">
<c:if test="not empty msg">
<p class="text-danger">删除成功</p>
</c:if>
</div>
<div class="col-xs-1">
<a href="speaker_add.html" class="btn btn-primary btn">添加</a>
</div> <div id="row" class="col-xs-12 col-lg-8 col-md-offset-4 col-lg-offset-1">
<form id="condition" class="form-inline form_0" role="form" method="get">
<input name="currentPage" type="hidden" >
<div class="form-group col-xs-4 col-lg-2">
<input name="c_name" type="text" class="form-control" id="name"
placeholder="课程名称">
</div>
<div class="form-group col-xs-3 col-lg-3">
<select name="c_id" class="form-control btn-primary">
<option selected = "selected" value="0">请选择课程</option>
<c:forEach items="${courses }" var="course">
<option value="${course.id }">${course.courseTitle }</option>
</c:forEach>
</select>
</div>
<div class="form-group col-xs-3 col-lg-2">
<select name="s_id" class="form-control btn-primary">
<option selected = "selected" value="0">请选择老师</option>
<c:forEach items="${speakers }" var="speaker">
<option value="${speaker.id }">${speaker.speakerName }</option>
</c:forEach>
</select>
</div>
<div class="form-group col-xs-1 col-md-1">
<button type="submit" class="btn btn-primary">查询</button>
</div>
</form>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 col-lg-12">
<table class="table table-striped">
<thead>
<tr>
<th>选择</th>
<th>序号</th>
<th>名称</th>
<th>介绍</th>
<th>讲师</th>
<th>时长</th>
<th>播放次数</th>
<th>编辑</th>
<th>删除</th>
</tr>
</thead>
<tbody>
<c:forEach items="${videos }" var="video">
<tr>
<td>
<input class="check_0" value="${video.id }" type="checkbox">
</td>
<td class="show_id">${video.id }</td>
<td class="show_name">${video.title }</td>
<td>${video.detail }</td>
<td>${video.speaker.speakerName }</td>
<td>${video.time }</td>
<td>${video.playNum }</td>
<td><a class="edit_submit"
href="${pageContext.request.contextPath}/video/${video.id}"><span
class="glyphicon glyphicon-pencil"></span>编辑</a></td>
<td><a href="#" class="delete" data-toggle="modal"
data-target="#myModal"> <span
class="glyphicon glyphicon-trash"></span>删除
</a></td>
</tr>
</c:forEach>
</tbody>
</table>
<ul class="pagination">
<li><a href="#" id="previous">«</a></li>
<c:forEach begin="${pager.pageStart }" end="${pager.pageEnd }" varStatus="status">
<li <c:if test="${pager.currentPage==status.index }">class="active"</c:if> >
<a href="#" class="currentPageTag"><c:out value="${status.index }"></c:out></a>
</li>
</c:forEach>
<li><a href="#" id="next">»</a></li>
</ul>
</div>
</div>
</div>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog"
aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"
aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">温馨提示</h4>
</div>
<div id="info" class="modal-body">你确定要删除吗?</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
<button type="button" id="delete_submit" class="btn btn-primary">确定</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal -->
</div> </body>
<script type="text/javascript">
$(document).ready(
function() {
//删除按钮
$(".delete").click(
function() {
var click_name = $(this).parent().siblings(
".show_name").html();
var click_id = $(this).parent()
.siblings(".show_id").html();
$("#info").html(
"你确定要删除视频:<a class='name_info'>"
+ click_name + "</a>吗?");
$("#id").val(click_id);
})
$("#delete_submit").click(function() {
$("#_method").val("DELETE");
$("#form").submit();
})
//编辑按钮
$(".edit_submit").click(
function() { var click_id = $(this).parent()
.siblings(".show_id").html();
$("#id").val(click_id);
$("#form").attr("method", "get");
$("#_method").val("get");
$("#form").submit();
})
//获取选中的个数
$(".check_0").click(function() {
$("#badge_0").html($("input[type=checkbox]:checked").length);
//alert($("input[type = checkbox]: checked ").length);
})
//批量删除
$("#batchDel").click(function() {
var params = "";
$("input[type = checkbox]:checked").each(function(index,element){
//第一个id不需要加前缀
if(index == 0) {
params += "?id=" +
$(this).val();
} else {
params += "&id=" +
$(this).val();
}
});
$(this).attr('href','${pageContext.request.contextPath}'+params);
//window.location.href='${pageContext.request.contextPath}'+params;
alert("生成的拼接参数:" + params);
}) //分页
var currentPage=${pager.currentPage};
var pageTotal=${pager.pageTotal}; $("#previous").click(function(){
if(currentPage==1) return;
$("input[name='currentPage']").val(currentPage-1);
$("#condition").submit();
})
$("#next").click(function(){
if(currentPage==pageTotal) return;
$("input[name='currentPage']").val(currentPage+1);
$("#condition").submit();
})
$(".currentPageTag").click(function(){
$("input[name='currentPage']").val($(this).html());
$("#condition").submit();
})
//当点击提交时把查询的参数存到cookie
$("#condition").click(function(){
$.cookie('c_name', $("input[name='c_name']").val());
$.cookie('c_id', $("select[name='c_id']").val());
$.cookie('s_id', $("select[name='s_id']").val()); })
//alert($("select[name='c_id']").val()+":"+$("select[name='s_id']").val())
//加载页面时将之前提交的参数赋值 var c_name=$.cookie('c_name');
var c_id=$.cookie('c_id');
var s_id=$.cookie('s_id'); if(c_name&&c_name!=0&&c_name!="null"){
$("input[name='c_name']").val($.cookie('c_name'));
} if(c_id&&c_id!=0&&c_id!="null"){
$("select[name='c_id']").val($.cookie('c_id'));
}
if(s_id&&s_id!=0&&s_id!="null"){
$("select[name='s_id']").val($.cookie('s_id'));
} })
</script>
</html>
cookie相关js:
//当点击提交时把查询的参数存到cookie
$("#condition").click(function(){
$.cookie('c_name', $("input[name='c_name']").val());
$.cookie('c_id', $("select[name='c_id']").val());
$.cookie('s_id', $("select[name='s_id']").val()); })
//alert($("select[name='c_id']").val()+":"+$("select[name='s_id']").val())
//加载页面时将之前保存在cookie的参数从新赋值给表单 var c_name=$.cookie('c_name');
var c_id=$.cookie('c_id');
var s_id=$.cookie('s_id'); if(c_name&&c_name!=0&&c_name!="null"){
$("input[name='c_name']").val($.cookie('c_name'));
} if(c_id&&c_id!=0&&c_id!="null"){
$("select[name='c_id']").val($.cookie('c_id'));
}
if(s_id&&s_id!=0&&s_id!="null"){
$("select[name='s_id']").val($.cookie('s_id'));
}
实现步骤很简单,但是其中却有一个坑:
在把cookie的值插入表单前,需要进行验证,看值是不是null或者空值。
因为第一次打开页面时cookie是没有值,如果不验证就会出现下面这样:
正常情况下进行非空验证需要下面三步:
判断cookie是否存在对应值? 可以直接取值,如果没有值就会返回false
判断cookie是否存了空值? 对null进行比较
因为我使用了select标签,所以还需要判断是否是默认值,如果是默认值,则不需要处理。
总的语句:$.cookie('c_id')&&$.cookie('c_id')!=0 && $.cookie('c_id')!=null
但是当我使用却发现即使cookie存了null,.cookie(“c_id”)!=null也返回true.
最后搞了很久发现,当null值存入cookie时,是存入了一个”null”的字符串。不仅如此,对true、false,也是这样的处理,所以在进行比较时就需要加双引号:
$.cookie('c_id')!=”null”
这时我就思考了一下,可能不止cookie,对于其他一些key-value类型的容器,对null、false、true等这些特殊符号可能也是做字符串处理,大家以后一定要注意。
分页查询时,使用cookie保存上次的查询条件。jQuery实现方法以及中间遇到的坑的更多相关文章
- 查询时,如何保存获取相关路径url
作为新人,总是会有许多小问题不懂,不知道如何解决的. 这不,这次,遇到了路径获取问题. 在Jsp页面中,获取当前路径,在<script></script>中添加 var ur ...
- cookie 保存上次访问url方法
if (Session[Enums.UserInfoSeesion] == null) { HttpCookie cookie = Request.Cookies[Enums.UserLastAcce ...
- PHP分页倒序时,需要注意的问题
PHP分页倒序请求,如果有新数据加入,下一页会出现重复数据 解决方案: 第一次查询时,给前端返回一个查询时间戳,下一次请求时,把时间戳带过来,只查询比这个时间戳小的数据
- 关于SubSonic3.0插件使用SubSonic.Query.Select查询时,字段类型为tinyint时列丢失问题的Bug修复
下午在写代码时,突然发现一个列名为Enable的字段怎么也查询不出来,开始以为可能这个名称是关键字,所以给过滤掉了,所以就将名称修改为IsEnable,问题还是一样......将名称又改为IsEnab ...
- query_string查询支持全部的Apache Lucene查询语法 低频词划分依据 模糊查询 Disjunction Max
3.3 基本查询3.3.1词条查询 词条查询是未经分析的,要跟索引文档中的词条完全匹配注意:在输入数据中,title字段含有Crime and Punishment,但我们使用小写开头的crime来搜 ...
- MySQL多表查询合并结果union all,内连接查询
MySQL多表查询合并结果和内连接查询 1.使用union和union all合并两个查询结果:select 字段名 from tablename1 union select 字段名 from tab ...
- [android]-如何在向服务器发送request时附加已保存的cookie数据
[android]-如何在向服务器发送request时附加已保存的cookie数据 应用场景:在开发android基于手机端+服务器端的应用时,登陆->获取用户信息->获取授权用户相关业务 ...
- 页面跳转时中间参数保存(memcache/cookie)
2014年1月19日 17:30:27 我这篇文章就说了一句话:用cookie保存页面间跳转时的参数 情景: 客服在后台操作的时候,经常从列表页进入到编辑页,编辑完信息后,还要自动返回之前的列表页 问 ...
- sql查询时增加自动编号和分页
查询时加序号 a:没有主键的情形: ,) as iid,* into #tmp from TableName Select * from #tmp Drop table #tmp b:有主键的情形: ...
随机推荐
- Kia's Calculation hdu4726
Kia's Calculation Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others ...
- jQuery经典案例
示例1:鼠标点击左侧菜单实现打开和关闭功能: html及css代码部分: <!DOCTYPE html> <html lang="en"> <head ...
- 面向对象oop
类和对象 1.什么是类?什么是对象? 1)现实世界是由很多很多对象组成的 基于对象抽出了类 2)对象:真实存在的单个的个体 类:类型/类别,代表一类个体 3)类中可以包含: 3.1)所有对象所共有的属 ...
- UpdatePanel控件的使用和局部刷新
http://www.cnblogs.com/baiefjg/archive/2009/06/14/1502813.html
- python爬虫之获取验证码登陆
#--coding:utf-8#author:wuhao##这里我演示的就是本人所在学校的教务系统#import urllib.requestimport urllib.parseimport rei ...
- ABAP POH和POV事件中 获得屏幕字段的值
在Screen显示之前,系统会自动将程序变量值放到屏幕字段中:在PAI事件中,系统会自动将屏幕字段的值更新到相应的程序变量. 在Screen Logic中我们还有POH和POV事件,所以有时需要调用函 ...
- Android Stuido 提高开发效率的插件
好久没有更新博客了,最近搞个listview搞得半死不活的,心累~~ 今天带来的是Android Studio插件的整理,全是我已经安装使用的,写这篇博文的目的也是因为我怕我自己给忘记怎么用(尴尬) ...
- jzoj 5230 队伍统计(状压DP)
Description 现在有n个人要排成一列,编号为1->n .但由于一些不明原因的关系,人与人之间可能存在一些矛盾关系,具体有m条矛盾关系(u,v),表示编号为u的人想要排在编号为v的人前面 ...
- 【ASP.NET MVC 学习笔记】- 18 Bundle(捆绑)
本文参考:http://www.cnblogs.com/willick/p/3438272.html 1.捆绑(Bundle),一个在 View 和 Layout 中用于组织优化浏览器请求的 CSS ...
- log4j 和slf4j的比较
log4j 和slf4j的比较 slf4j 官网:https://www.slf4j.org/manual.html slf4j(simple logging facade for java)是Jav ...