- 浏览: 88904 次
- 性别:
- 来自: 武汉
文章分类
- 全部博客 (97)
- java (23)
- 自定义标签 (3)
- struts (7)
- SSI (0)
- SSH (6)
- IBATIS (14)
- hibernate (2)
- spring (2)
- ssl认证 (1)
- jstl (2)
- jstl中list嵌套map (0)
- ajax (2)
- lucene (2)
- js (5)
- servlet (1)
- jquery (0)
- javascript (7)
- struts1 (1)
- sql (7)
- 公司面试心得 (3)
- jdk (1)
- ERP行业必备的工具 (1)
- 数据库连接池 (1)
- 日志配置问题 (1)
- 呵呵 (0)
- DOJO (1)
- WS (0)
- 工作流JBPM (1)
- 開發工具準備 (1)
- 注解 (0)
- fdsfsdf (0)
- 分页 (0)
- oracle (1)
最新评论
-
kongchuijian:
System.out.println(Arrays.toStr ...
java中数组的问题 -
wyr123789:
你上面已经定义成字节型的为什么还要强转啊?还有你那个'z'-i ...
新手入门 -
ipanel420:
居然是茁壮的同事
SSH2整合+分页+ajax+js校验用户名 -
yemengfan:
楼主能不能把你这个项目发给我啊。我想看看! yemengfa ...
SSH2整合+分页+ajax+js校验用户名
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletResponse;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import org.apache.commons.lang.StringUtils;
public class AjaxHomePage {
@SuppressWarnings("unchecked")
public void onLoad(Map mapRequest, Map mapSession) throws UnsupportedEncodingException {
// 当前是那一个方法
String method = FormUtil.getString("methodx", mapRequest);
JSONObject jo = null;
if (StringUtils.isNotEmpty(method) && "addinfo".equals(method)) {
jo = this.addInform(mapRequest, mapSession);
}
if (StringUtils.isNotEmpty(method) && "addinfos".equals(method)) {
this.insertInfo(mapRequest, mapSession);
}
if (StringUtils.isNotEmpty(method) && "selectall".equals(method)) {
jo = this.selectinform(mapRequest, mapSession);
}
PrintWriter out = null;
HttpServletResponse response = ActionContext.getResponse();
// 返回JSON对象
try {
out = response.getWriter();
out.println(jo);
} catch (Exception e) {
} finally {
if (out != null) {
out.close();
}
}
}
/**
* 查询出要修改的资讯信息
*
* @param mapRequest
* @param mapSession
* @return
*/
@SuppressWarnings("unchecked")
public JSONObject addInform(Map mapRequest, Map mapSession) {
Map map = new HashMap();
// 获得要修改资讯的id
Integer id = Integer.valueOf(FormUtil.getString("id", mapRequest));
// 查询出要修改的资讯信息
Information information = InformationService.getByIdInformation(id);
System.out.println(information.getCreator());
map.put("result", JSONObject.fromObject(information));
return JSONObject.fromObject(map);
}
/**
* 插入方法
*
* @return
*/
public String insertInfo(Map mapRequest, Map mapSession) {
System.out.println("插入成功 !!!!!");
return null;
}
/**
* 查询所有
*
* @param mapRequest
* @param mapSession
* @return
* @throws UnsupportedEncodingException
*/
@SuppressWarnings("unchecked")
public JSONObject selectinform(Map mapRequest, Map mapSession)
throws UnsupportedEncodingException {
int pageSize = 10;// 每页显示的条数 默认5
int recordCount;// 记录总条数
int currentPage = 0;// 当前页
int totalPage = 0;// 总页数
int starts;// 重第几条记录开始
Map maps = new HashMap();
Map map = new HashMap();
List jsonList = new ArrayList();
// 得到标题
String title = FormUtil.getString("title", mapRequest);
// 得到资讯地区
String area = FormUtil.getString("area", mapRequest);
String istop = FormUtil.getString("istop", mapRequest);
if (("".equals(title) || title == null)
&& ("".equals(area) || area == null)
&& ("".equals(istop) || istop == null)) {
// 获得第几页
try {
currentPage = Integer.valueOf(FormUtil.getString(
"current", mapRequest));
} catch (Exception e) {
currentPage = 1;
}
// 查询出总条数
recordCount = InformationService.getInformationCount();
// 得到总页数
totalPage = InformationService.pageCountNo(recordCount, pageSize);
currentPage = currentPage > 0 ? (currentPage > totalPage ? totalPage
: currentPage)
: 1;
starts = (currentPage - 1) * pageSize;// 得到当前页的开始数
List<Information> list = InformationService.pageSelect(starts,
pageSize);
for (Information information : list) {
map.put("id", information.getId());
map.put("title", information.getTitle());
map.put("creaTime",
format(information.getCreaTime() == null ? 0l
: information.getCreaTime().getTime()));
jsonList.add(JSONObject.fromObject(map));
}
} else {
if (!"".equals(title)) {
title = new String(title.getBytes("ISO-8859-1"), "utf-8");
}
if (!"".equals(area)) {
area = new String(area.getBytes("ISO-8859-1"), "utf-8");
}
// 得到是否置顶
if ("".equals(istop)) {
maps.put("title", title);
maps.put("area", area);
maps.put("istop", istop);
maps.put("limitClauseStart", 0);
maps.put("limitClauseCount", 10);
} else {
maps.put("title", title);
maps.put("area", area);
maps.put("istop", Integer.valueOf(istop));
maps.put("limitClauseStart", 0);
maps.put("limitClauseCount", 10);
}
// 获得第几页
try {
currentPage = Integer.valueOf(FormUtil.getString("current",
mapRequest));
} catch (Exception e) {
currentPage = 1;
}
// 查询出总条数
recordCount = InformationService.getInformationIdCount(maps);
// 得到总页数
totalPage = InformationService.pageCountNo(recordCount, pageSize);
currentPage = currentPage > 0 ? (currentPage > totalPage ? totalPage
: currentPage)
: 1;
starts = (currentPage - 1) * pageSize;// 得到当前页的开始数
List<Information> list = InformationService
.selectparameterPage(maps);
for (Information information : list) {
map.put("id", information.getId());
map.put("title", information.getTitle());
map.put("creaTime",
format(information.getCreaTime() == null ? 0l
: information.getCreaTime().getTime()));
jsonList.add(JSONObject.fromObject(map));
}
}
map.put("result", JSONArray.fromObject(jsonList));
return JSONObject.fromObject(map);
}
/**
* 处理json的时间问题
*
* @param dateLong
* @return
*/
public String format(Long dateLong) {
DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String str = df.format(dateLong);
return str;
}
}
class index
package com.bydtrip.forms.homepage;
import java.util.List;
import java.util.Map;
public class index {
/**
* 第一次加载
* @param mapRequest
* @param mapSession
*/
@SuppressWarnings("unchecked")
public void onLoad(Map mapRequest, Map mapSession) {
System.out.println("开始加载页面");
int pageSize = 10;// 每页显示的条数 默认5
int recordCount;// 记录总条数
int currentPage = 0;// 当前页
int totalPage = 0;// 总页数
int starts;// 重第几条记录开始
// 获得第几页
try {
currentPage = Integer.valueOf(FormUtil.getString("currentPages",
mapRequest));
} catch (Exception e) {
currentPage = 1;
}
// 查询出总条数
recordCount = InformationService.getInformationCount();
// 得到总页数
totalPage = InformationService.pageCountNo(recordCount, pageSize);
// 当前页的首记录
currentPage = currentPage > 0 ? (currentPage > totalPage ? totalPage
: currentPage) : 1;
starts = (currentPage - 1) * pageSize;// 得到当前页的开始数
List<Information> list = InformationService
.pageSelect(starts, pageSize);
// 把总页数设置出去
mapRequest.put("totalPage", totalPage);
// 目前是第几页
mapRequest.put("currentPages", currentPage);
}
}
index.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
<%@ taglib uri="http://acegisecurity.org/webres" prefix="webres"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%String url=getServletContext().getContextPath(); %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="<%=url %>/public/css/admin.css" rel="stylesheet" type="text/css" />
<link href="<%=url %>/public/js/FCKeditor/sample.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="<%=url %>/public/js/FCKeditor/fckeditor.js"></script>
<link rel="stylesheet" type="text/css" href="<%=url %>/public/yui/fonts/fonts-min.css" />
<link rel="stylesheet" type="text/css" href="<%=url %>/public/yui/button/assets/skins/sam/button.css" />
<link rel="stylesheet" type="text/css" href="<%=url %>/public/yui/container/assets/skins/sam/container.css" />
<script type="text/javascript" src="<%=url %>/public/yui/yahoo-dom-event/yahoo-dom-event.js"></script>
<script type="text/javascript" src="<%=url %>/public/yui/connection/connection-min.js"></script>
<script type="text/javascript" src="<%=url %>/public/yui/element/element-min.js"></script>
<script type="text/javascript" src="<%=url %>/public/yui/button/button-min.js"></script>
<script type="text/javascript" src="<%=url %>/public/yui/dragdrop/dragdrop-min.js"></script>
<script type="text/javascript" src="<%=url %>/public/yui/container/container-min.js"></script>
<title>管理</title>
</head>
<body onload="meth.firstPage()" class="yui-skin-sam">
<div id="back_global" >
<div class="back_right_ins">
<div class="lead"><h4>管理</h4></div>
<div class="new_all">
<div class="back_search">
<input type="text" value="请输入标题" name="title" id="title" class="m_right10 back_sear_box"
onMouseOver="this.focus()"
onMouseOut="if(this.value=='')this.value='请输入标题';"
onFocus="this.select()"
onClick="if(this.value=='请输入标题')this.value=''">
<input type="text" value="请输地区" name="area" id="area" class="m_right10 back_sear_box"
onMouseOver="this.focus()"
onMouseOut="if(this.value=='')this.value='请输地区';"
onFocus="this.select()"
onClick="if(this.value=='请输地区')this.value=''">
<select class="m_right10 back_sear_box" id="istop" name="istop">
<option value="no">--</option>
<option value="1">是</option>
<option value="0">否</option>
</select>
<input type="submit" value="搜 索" name="hunt" class="yellow_but" onClick="meth.hunt()">
</div>
<div class="hotel_one" >
<div class="but_action">
<input type="button" class="add_new_but_xz" onClick="add();">
<input type="submit" name="delete" value="" class="add_new_but_sc m_left10" onclick="meth.todelete();"></div>
<div id="table"></div>
</div>
<div class="new_page"><div class="page_view"><div class="first">
<a href="javascript:;" id="firstPagebutton" onclick="meth.firstPage()"><<</a></div><div class="fore">
<a href="javascript:;" onclick="meth.prePage();" id="prePagebutton"><</a></div><div class="back">
<a href="javascript:;" onclick="meth.nextPage();" id="nextPagebutton">></a></div><div class="last">
<a href="javascript:;" onclick="meth.lastPage();" id="lastPagebutton">>></a></div>
<div class="number">[ <span id="nowPage" class="yellow">1</span> ]/[ <span id="countPage" class="yellow">${totalPage }</span> ] Go To</div>
<input class="p_n" name="" type="text" />
<input class="go_btn" name="" type="button" value=""/></div>
<div class="clear"></div></div>
</div><!--new_all-->
</div><!--back_right_ins-->
</div> <!--back_right-->
<script type="text/javascript">
YAHOO.namespace("example.container");
var fir =0;
YAHOO.util.Event.onDOMReady(function () {
// 提交前
var handleSubmit = function() {
if(fir==1){
var oEditor = FCKeditorAPI.GetInstance("detail");//fck的值
var theData = oEditor.GetXHTML(true);
var content = document.getElementById("details"); //隐的值
content.value = theData;
var s =document.getElementById('details').value;
var title =document.getElementById('showtitle').value;
if(title=="" || s==""){
alert("请输入完整");
return false;
}
var url='InformNewManagerForm.jsp';//添加
var postData='method=add&title='+title+'&detail='+s+'&date' + new Date();
}else if(fir == 2){
var oEditor = FCKeditorAPI.GetInstance("detail");//fck的值
var theData = oEditor.GetXHTML(true);
var content = document.getElementById("details"); //隐的值
content.value = theData;
var id =document.getElementById('infoid').value;
var s =document.getElementById('details').value;
var title =document.getElementById('showtitle').value;
if(title=="" || s==""){
alert("请输入完整");
return false;
}
var url="InformNewManagerForm.jsp";//编辑
var postData='method=update&id='+id+'&title='+title+'&detail='+s+'&date'+new Date();
}
var callback = {
success:function(o){
document.getElementById('showtitle').value="";
var d =document.getElementById('detail').value;
var oEditor = FCKeditorAPI.GetInstance("detail");//fck的值
oEditor.EditorDocument.body.innerHTML=""; //清空fck
window.location.reload();
},
failure:function(o){
alert("失败");
}
};
YAHOO.util.Connect.asyncRequest('post', url, callback, postData);
this.cancel();
};
//关闭
var handleCancel = function() {
this.cancel();
};
YAHOO.util.Dom.removeClass("dialog1", "yui-pe-content");
// Instantiate the Dialog
myDialog = new YAHOO.widget.Dialog("dialog1",
{ modal: true,
width : "50em",
height :"37em",
fixedcenter : true,
visible : false,
constraintoviewport : true,
buttons : [ { text:"确定", handler:handleSubmit},
{ text:"关闭", handler:handleCancel } ]
});
myDialog.render();
});
function selected()
{
var allsel=document.getElementsByName("id");
for(var i=0;i<allsel.length;i++){
allsel[i].checked=!allsel[i].checked;
}
}
function makeRequest(id){
alert(id);
}
//得到一个id
function getDom(id){
return document.getElementById(id);
}
//得到一个id的值
function getValue(id){
return getDom(id).value;
}
var meth = function(){
//从页面上得到总页数
var pageCount=getDom('countPage').innerHTML;
var title = ""; //标题
var area = "";//地区
var istop = "";//置顶
var currentPage = 1;//当前页数
return{
firstPage:function(){
meth.getConfirmPage(1); //第一次默认为首页
},prePage:function(){ //上一页
if(currentPage > 1){
currentPage -= 1;
meth.getConfirmPage(currentPage);
}
},nextPage:function(){ //下一页
if(currentPage < pageCount){
currentPage += 1;
meth.getConfirmPage(currentPage);
}
},lastPage:function(){ //最后一页
if(currentPage<=pageCount){
meth.getConfirmPage(pageCount);
currentPage = pageCount;
}
},hunt:function(){ //搜索
title=getValue('title');
area=getValue('area');
istop=getValue('istop');
if(title=='请输入资讯标题') title="";
if(area =='请输资讯地区') area="";
if(istop =='no')istop="";
meth.getConfirmPage(1);
},todelete:function(){ //删除
var checkeds= document.getElementsByName("id");
var a= new Array(checkeds.length);
var flag = false;
for(var i=0;i<checkeds.length;i++){
if(checkeds[i].checked == true){
flag = true;
break;
}
}
if(!flag){
alert("请至少选择一项");
} else{
var s = confirm('您确定要删除吗?');
meth.getConfirmPage(currentPage);
return s;
}
},
getConfirmPage:function(gotopage){//传入的是页数
pageCounts=gotopage;
if(pageCounts>pageCount)pageCounts= pageCount; //如果获得的页数大于总页就返回总页数
if(pageCounts<1)pageCounts=1; //如果获得的页数小于1的话返回1
var url='AjaxHomePage.jsp';
var postData ='methodx=selectall¤t='+gotopage+'&title='+title+'&area='+area+'&istop='+istop+'&date='+new Date();//传入第几页
var callback = {
success:function(o){
var result=eval("("+o.responseText+")");
var tableData = result.result;
meth.createTable(tableData);
getDom("nowPage").innerHTML = gotopage;
getDom("countPage").innerHTML = pageCount;
},
failure:function(o){
alert(o.status+"failure");
}
//timeout:7000
};
YAHOO.util.Connect.asyncRequest('post', url, callback, postData);
},
createTable:function(tableData){//创建要显示的数据
var div=getDom('table');
div.innerHTML="";
div.innerHTML="<table class=\"h_msg_table m_top10\"><thead><tr><th width=\"7%\"><input type=\"checkbox\" id=\"sunbox\" name=\"sunbox\" onclick=\"selected()\"></th><th width=\"68%\">主题</th><th width=\"18%\">发布时间</th><th>操作</th></tr></thead><tbody id=\"tablBody\"></tbody></table>";
if(tableData==0){
alert('数据为空');
return false;
}
var tbody=getDom('tablBody');
for(var i=0;i<tableData.length;i++){
//ie能识别出名为uniqueID的document对象的专用属性,名为uniqueID,ie是唯一能够识别这个属性的浏览器,所以uniqueID很适合用来确定脚本是不是在Ie中运行。使用document.uniqueID。
var myTr = (!!document.uniqueID)?document.createElement("<tr></tr>"):document.createElement("tr");
for(var j=0;j<3;j++){
var mytd = (!!document.uniqueID)?document.createElement('<td></td>'):document.createElement('td');
if(j==0){
mytd.innerHTML="<input type=\"checkbox\" name=\"id\" id=\"id\" value=\""+tableData[i].id+"\" />";
}
if(j==1){
mytd.innerHTML = "<a href=\"#\" class=\"bluelink\">"+tableData[i].title+"</a>";
}
if(j==2){
mytd.innerHTML ="<a href=\"#\" class=\"bluelink\">"+tableData[i].creaTime+"</a>";
}
myTr.appendChild(mytd);
}
var td1 = (!!document.uniqueID)?document.createElement("<td></td>"):document.createElement("td");
td1.innerHTML = "<a href=\"#\" id=\"edits\" name=\"edits\" class=\"bluelink\" onClick=\"makeRequest("+tableData[i].id+");\">编辑</a>";
myTr.appendChild(td1);
tbody.appendChild(myTr);
}
}
};
}();
</script>
</body>
</html>
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletResponse;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import org.apache.commons.lang.StringUtils;
public class AjaxHomePage {
@SuppressWarnings("unchecked")
public void onLoad(Map mapRequest, Map mapSession) throws UnsupportedEncodingException {
// 当前是那一个方法
String method = FormUtil.getString("methodx", mapRequest);
JSONObject jo = null;
if (StringUtils.isNotEmpty(method) && "addinfo".equals(method)) {
jo = this.addInform(mapRequest, mapSession);
}
if (StringUtils.isNotEmpty(method) && "addinfos".equals(method)) {
this.insertInfo(mapRequest, mapSession);
}
if (StringUtils.isNotEmpty(method) && "selectall".equals(method)) {
jo = this.selectinform(mapRequest, mapSession);
}
PrintWriter out = null;
HttpServletResponse response = ActionContext.getResponse();
// 返回JSON对象
try {
out = response.getWriter();
out.println(jo);
} catch (Exception e) {
} finally {
if (out != null) {
out.close();
}
}
}
/**
* 查询出要修改的资讯信息
*
* @param mapRequest
* @param mapSession
* @return
*/
@SuppressWarnings("unchecked")
public JSONObject addInform(Map mapRequest, Map mapSession) {
Map map = new HashMap();
// 获得要修改资讯的id
Integer id = Integer.valueOf(FormUtil.getString("id", mapRequest));
// 查询出要修改的资讯信息
Information information = InformationService.getByIdInformation(id);
System.out.println(information.getCreator());
map.put("result", JSONObject.fromObject(information));
return JSONObject.fromObject(map);
}
/**
* 插入方法
*
* @return
*/
public String insertInfo(Map mapRequest, Map mapSession) {
System.out.println("插入成功 !!!!!");
return null;
}
/**
* 查询所有
*
* @param mapRequest
* @param mapSession
* @return
* @throws UnsupportedEncodingException
*/
@SuppressWarnings("unchecked")
public JSONObject selectinform(Map mapRequest, Map mapSession)
throws UnsupportedEncodingException {
int pageSize = 10;// 每页显示的条数 默认5
int recordCount;// 记录总条数
int currentPage = 0;// 当前页
int totalPage = 0;// 总页数
int starts;// 重第几条记录开始
Map maps = new HashMap();
Map map = new HashMap();
List jsonList = new ArrayList();
// 得到标题
String title = FormUtil.getString("title", mapRequest);
// 得到资讯地区
String area = FormUtil.getString("area", mapRequest);
String istop = FormUtil.getString("istop", mapRequest);
if (("".equals(title) || title == null)
&& ("".equals(area) || area == null)
&& ("".equals(istop) || istop == null)) {
// 获得第几页
try {
currentPage = Integer.valueOf(FormUtil.getString(
"current", mapRequest));
} catch (Exception e) {
currentPage = 1;
}
// 查询出总条数
recordCount = InformationService.getInformationCount();
// 得到总页数
totalPage = InformationService.pageCountNo(recordCount, pageSize);
currentPage = currentPage > 0 ? (currentPage > totalPage ? totalPage
: currentPage)
: 1;
starts = (currentPage - 1) * pageSize;// 得到当前页的开始数
List<Information> list = InformationService.pageSelect(starts,
pageSize);
for (Information information : list) {
map.put("id", information.getId());
map.put("title", information.getTitle());
map.put("creaTime",
format(information.getCreaTime() == null ? 0l
: information.getCreaTime().getTime()));
jsonList.add(JSONObject.fromObject(map));
}
} else {
if (!"".equals(title)) {
title = new String(title.getBytes("ISO-8859-1"), "utf-8");
}
if (!"".equals(area)) {
area = new String(area.getBytes("ISO-8859-1"), "utf-8");
}
// 得到是否置顶
if ("".equals(istop)) {
maps.put("title", title);
maps.put("area", area);
maps.put("istop", istop);
maps.put("limitClauseStart", 0);
maps.put("limitClauseCount", 10);
} else {
maps.put("title", title);
maps.put("area", area);
maps.put("istop", Integer.valueOf(istop));
maps.put("limitClauseStart", 0);
maps.put("limitClauseCount", 10);
}
// 获得第几页
try {
currentPage = Integer.valueOf(FormUtil.getString("current",
mapRequest));
} catch (Exception e) {
currentPage = 1;
}
// 查询出总条数
recordCount = InformationService.getInformationIdCount(maps);
// 得到总页数
totalPage = InformationService.pageCountNo(recordCount, pageSize);
currentPage = currentPage > 0 ? (currentPage > totalPage ? totalPage
: currentPage)
: 1;
starts = (currentPage - 1) * pageSize;// 得到当前页的开始数
List<Information> list = InformationService
.selectparameterPage(maps);
for (Information information : list) {
map.put("id", information.getId());
map.put("title", information.getTitle());
map.put("creaTime",
format(information.getCreaTime() == null ? 0l
: information.getCreaTime().getTime()));
jsonList.add(JSONObject.fromObject(map));
}
}
map.put("result", JSONArray.fromObject(jsonList));
return JSONObject.fromObject(map);
}
/**
* 处理json的时间问题
*
* @param dateLong
* @return
*/
public String format(Long dateLong) {
DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String str = df.format(dateLong);
return str;
}
}
class index
package com.bydtrip.forms.homepage;
import java.util.List;
import java.util.Map;
public class index {
/**
* 第一次加载
* @param mapRequest
* @param mapSession
*/
@SuppressWarnings("unchecked")
public void onLoad(Map mapRequest, Map mapSession) {
System.out.println("开始加载页面");
int pageSize = 10;// 每页显示的条数 默认5
int recordCount;// 记录总条数
int currentPage = 0;// 当前页
int totalPage = 0;// 总页数
int starts;// 重第几条记录开始
// 获得第几页
try {
currentPage = Integer.valueOf(FormUtil.getString("currentPages",
mapRequest));
} catch (Exception e) {
currentPage = 1;
}
// 查询出总条数
recordCount = InformationService.getInformationCount();
// 得到总页数
totalPage = InformationService.pageCountNo(recordCount, pageSize);
// 当前页的首记录
currentPage = currentPage > 0 ? (currentPage > totalPage ? totalPage
: currentPage) : 1;
starts = (currentPage - 1) * pageSize;// 得到当前页的开始数
List<Information> list = InformationService
.pageSelect(starts, pageSize);
// 把总页数设置出去
mapRequest.put("totalPage", totalPage);
// 目前是第几页
mapRequest.put("currentPages", currentPage);
}
}
index.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
<%@ taglib uri="http://acegisecurity.org/webres" prefix="webres"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%String url=getServletContext().getContextPath(); %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="<%=url %>/public/css/admin.css" rel="stylesheet" type="text/css" />
<link href="<%=url %>/public/js/FCKeditor/sample.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="<%=url %>/public/js/FCKeditor/fckeditor.js"></script>
<link rel="stylesheet" type="text/css" href="<%=url %>/public/yui/fonts/fonts-min.css" />
<link rel="stylesheet" type="text/css" href="<%=url %>/public/yui/button/assets/skins/sam/button.css" />
<link rel="stylesheet" type="text/css" href="<%=url %>/public/yui/container/assets/skins/sam/container.css" />
<script type="text/javascript" src="<%=url %>/public/yui/yahoo-dom-event/yahoo-dom-event.js"></script>
<script type="text/javascript" src="<%=url %>/public/yui/connection/connection-min.js"></script>
<script type="text/javascript" src="<%=url %>/public/yui/element/element-min.js"></script>
<script type="text/javascript" src="<%=url %>/public/yui/button/button-min.js"></script>
<script type="text/javascript" src="<%=url %>/public/yui/dragdrop/dragdrop-min.js"></script>
<script type="text/javascript" src="<%=url %>/public/yui/container/container-min.js"></script>
<title>管理</title>
</head>
<body onload="meth.firstPage()" class="yui-skin-sam">
<div id="back_global" >
<div class="back_right_ins">
<div class="lead"><h4>管理</h4></div>
<div class="new_all">
<div class="back_search">
<input type="text" value="请输入标题" name="title" id="title" class="m_right10 back_sear_box"
onMouseOver="this.focus()"
onMouseOut="if(this.value=='')this.value='请输入标题';"
onFocus="this.select()"
onClick="if(this.value=='请输入标题')this.value=''">
<input type="text" value="请输地区" name="area" id="area" class="m_right10 back_sear_box"
onMouseOver="this.focus()"
onMouseOut="if(this.value=='')this.value='请输地区';"
onFocus="this.select()"
onClick="if(this.value=='请输地区')this.value=''">
<select class="m_right10 back_sear_box" id="istop" name="istop">
<option value="no">--</option>
<option value="1">是</option>
<option value="0">否</option>
</select>
<input type="submit" value="搜 索" name="hunt" class="yellow_but" onClick="meth.hunt()">
</div>
<div class="hotel_one" >
<div class="but_action">
<input type="button" class="add_new_but_xz" onClick="add();">
<input type="submit" name="delete" value="" class="add_new_but_sc m_left10" onclick="meth.todelete();"></div>
<div id="table"></div>
</div>
<div class="new_page"><div class="page_view"><div class="first">
<a href="javascript:;" id="firstPagebutton" onclick="meth.firstPage()"><<</a></div><div class="fore">
<a href="javascript:;" onclick="meth.prePage();" id="prePagebutton"><</a></div><div class="back">
<a href="javascript:;" onclick="meth.nextPage();" id="nextPagebutton">></a></div><div class="last">
<a href="javascript:;" onclick="meth.lastPage();" id="lastPagebutton">>></a></div>
<div class="number">[ <span id="nowPage" class="yellow">1</span> ]/[ <span id="countPage" class="yellow">${totalPage }</span> ] Go To</div>
<input class="p_n" name="" type="text" />
<input class="go_btn" name="" type="button" value=""/></div>
<div class="clear"></div></div>
</div><!--new_all-->
</div><!--back_right_ins-->
</div> <!--back_right-->
<script type="text/javascript">
YAHOO.namespace("example.container");
var fir =0;
YAHOO.util.Event.onDOMReady(function () {
// 提交前
var handleSubmit = function() {
if(fir==1){
var oEditor = FCKeditorAPI.GetInstance("detail");//fck的值
var theData = oEditor.GetXHTML(true);
var content = document.getElementById("details"); //隐的值
content.value = theData;
var s =document.getElementById('details').value;
var title =document.getElementById('showtitle').value;
if(title=="" || s==""){
alert("请输入完整");
return false;
}
var url='InformNewManagerForm.jsp';//添加
var postData='method=add&title='+title+'&detail='+s+'&date' + new Date();
}else if(fir == 2){
var oEditor = FCKeditorAPI.GetInstance("detail");//fck的值
var theData = oEditor.GetXHTML(true);
var content = document.getElementById("details"); //隐的值
content.value = theData;
var id =document.getElementById('infoid').value;
var s =document.getElementById('details').value;
var title =document.getElementById('showtitle').value;
if(title=="" || s==""){
alert("请输入完整");
return false;
}
var url="InformNewManagerForm.jsp";//编辑
var postData='method=update&id='+id+'&title='+title+'&detail='+s+'&date'+new Date();
}
var callback = {
success:function(o){
document.getElementById('showtitle').value="";
var d =document.getElementById('detail').value;
var oEditor = FCKeditorAPI.GetInstance("detail");//fck的值
oEditor.EditorDocument.body.innerHTML=""; //清空fck
window.location.reload();
},
failure:function(o){
alert("失败");
}
};
YAHOO.util.Connect.asyncRequest('post', url, callback, postData);
this.cancel();
};
//关闭
var handleCancel = function() {
this.cancel();
};
YAHOO.util.Dom.removeClass("dialog1", "yui-pe-content");
// Instantiate the Dialog
myDialog = new YAHOO.widget.Dialog("dialog1",
{ modal: true,
width : "50em",
height :"37em",
fixedcenter : true,
visible : false,
constraintoviewport : true,
buttons : [ { text:"确定", handler:handleSubmit},
{ text:"关闭", handler:handleCancel } ]
});
myDialog.render();
});
function selected()
{
var allsel=document.getElementsByName("id");
for(var i=0;i<allsel.length;i++){
allsel[i].checked=!allsel[i].checked;
}
}
function makeRequest(id){
alert(id);
}
//得到一个id
function getDom(id){
return document.getElementById(id);
}
//得到一个id的值
function getValue(id){
return getDom(id).value;
}
var meth = function(){
//从页面上得到总页数
var pageCount=getDom('countPage').innerHTML;
var title = ""; //标题
var area = "";//地区
var istop = "";//置顶
var currentPage = 1;//当前页数
return{
firstPage:function(){
meth.getConfirmPage(1); //第一次默认为首页
},prePage:function(){ //上一页
if(currentPage > 1){
currentPage -= 1;
meth.getConfirmPage(currentPage);
}
},nextPage:function(){ //下一页
if(currentPage < pageCount){
currentPage += 1;
meth.getConfirmPage(currentPage);
}
},lastPage:function(){ //最后一页
if(currentPage<=pageCount){
meth.getConfirmPage(pageCount);
currentPage = pageCount;
}
},hunt:function(){ //搜索
title=getValue('title');
area=getValue('area');
istop=getValue('istop');
if(title=='请输入资讯标题') title="";
if(area =='请输资讯地区') area="";
if(istop =='no')istop="";
meth.getConfirmPage(1);
},todelete:function(){ //删除
var checkeds= document.getElementsByName("id");
var a= new Array(checkeds.length);
var flag = false;
for(var i=0;i<checkeds.length;i++){
if(checkeds[i].checked == true){
flag = true;
break;
}
}
if(!flag){
alert("请至少选择一项");
} else{
var s = confirm('您确定要删除吗?');
meth.getConfirmPage(currentPage);
return s;
}
},
getConfirmPage:function(gotopage){//传入的是页数
pageCounts=gotopage;
if(pageCounts>pageCount)pageCounts= pageCount; //如果获得的页数大于总页就返回总页数
if(pageCounts<1)pageCounts=1; //如果获得的页数小于1的话返回1
var url='AjaxHomePage.jsp';
var postData ='methodx=selectall¤t='+gotopage+'&title='+title+'&area='+area+'&istop='+istop+'&date='+new Date();//传入第几页
var callback = {
success:function(o){
var result=eval("("+o.responseText+")");
var tableData = result.result;
meth.createTable(tableData);
getDom("nowPage").innerHTML = gotopage;
getDom("countPage").innerHTML = pageCount;
},
failure:function(o){
alert(o.status+"failure");
}
//timeout:7000
};
YAHOO.util.Connect.asyncRequest('post', url, callback, postData);
},
createTable:function(tableData){//创建要显示的数据
var div=getDom('table');
div.innerHTML="";
div.innerHTML="<table class=\"h_msg_table m_top10\"><thead><tr><th width=\"7%\"><input type=\"checkbox\" id=\"sunbox\" name=\"sunbox\" onclick=\"selected()\"></th><th width=\"68%\">主题</th><th width=\"18%\">发布时间</th><th>操作</th></tr></thead><tbody id=\"tablBody\"></tbody></table>";
if(tableData==0){
alert('数据为空');
return false;
}
var tbody=getDom('tablBody');
for(var i=0;i<tableData.length;i++){
//ie能识别出名为uniqueID的document对象的专用属性,名为uniqueID,ie是唯一能够识别这个属性的浏览器,所以uniqueID很适合用来确定脚本是不是在Ie中运行。使用document.uniqueID。
var myTr = (!!document.uniqueID)?document.createElement("<tr></tr>"):document.createElement("tr");
for(var j=0;j<3;j++){
var mytd = (!!document.uniqueID)?document.createElement('<td></td>'):document.createElement('td');
if(j==0){
mytd.innerHTML="<input type=\"checkbox\" name=\"id\" id=\"id\" value=\""+tableData[i].id+"\" />";
}
if(j==1){
mytd.innerHTML = "<a href=\"#\" class=\"bluelink\">"+tableData[i].title+"</a>";
}
if(j==2){
mytd.innerHTML ="<a href=\"#\" class=\"bluelink\">"+tableData[i].creaTime+"</a>";
}
myTr.appendChild(mytd);
}
var td1 = (!!document.uniqueID)?document.createElement("<td></td>"):document.createElement("td");
td1.innerHTML = "<a href=\"#\" id=\"edits\" name=\"edits\" class=\"bluelink\" onClick=\"makeRequest("+tableData[i].id+");\">编辑</a>";
myTr.appendChild(td1);
tbody.appendChild(myTr);
}
}
};
}();
</script>
</body>
</html>
发表评论
-
JDK、Tomcat、MyEclipse整合
2013-03-13 22:18 0http://wenku.baidu.com/view/222 ... -
dt_003_02
2012-11-16 17:55 0@SuppressWarnings("uncheck ... -
dt_002_03
2012-11-15 19:41 0private static Map<String, L ... -
dt_002_02
2012-11-15 19:22 0package com.star.web.action; i ... -
dt_002_003
2012-11-15 19:13 0public String saveSetting() thr ... -
dt_0002_01
2012-11-15 17:21 0<%@ page language="java ... -
text测试
2012-05-10 18:35 0http://hi.baidu.com/boy86xf/ite ... -
分页测试
2012-05-10 18:34 0package com.chinasoft.remunerat ... -
java入门例子的思考
2011-11-14 13:05 1470public class testjava{ public ... -
IO的操作
2011-03-28 11:38 649一. Input和Output 1. stream代表的是任何 ... -
编码规范
2011-03-25 17:51 753很久以来都在体会着JAVA的风格,现在做一简单陈述,希望大家多 ... -
java中数组的问题
2011-03-17 09:00 951public class ThreeDay { pub ... -
把一个数组中的偶数重新组成一个新数组
2011-03-14 15:08 955挖哈哈!! 刚刚上班,通信联系坏了,公司的人联系不到我,我就 ... -
面试的一个简单程序但是当时没有想起来
2011-03-09 18:38 7081.2.2.4.8.16.32 请问第32位是多少这样的jav ... -
快速排序
2011-03-08 00:03 6581. 采用快速排序,一般 ... -
string类
2011-02-18 01:14 6881、考查"=="的结果 2、String ... -
上传和下载
2010-10-25 10:38 840public HttpServletResponse down ... -
java集合
2010-10-25 09:24 7661. ArrayList 基于数组方式实现,无容量的限 ... -
java中static private 与 final 详谈
2010-10-19 13:55 1133文章分类:Java编程 1.static表示静态。他是属于类 ... -
java中的对象详谈
2010-10-14 18:29 7642.1 用引用操作对象 (1 ...
相关推荐
"js 分页 无刷新 插件 多用"的标题和描述暗示了一个专门用于实现这一功能的插件,它能在不刷新页面的情况下实现分页,并且能与多种前端框架兼容。 无刷新分页技术的核心是利用Ajax(异步JavaScript和XML)来实现...
**Ajax分页无刷新技术详解** 在Web应用中,用户界面的流畅性和用户体验是至关重要的。传统的网页分页通常需要用户点击分页按钮后,页面整体重新加载,这可能导致页面跳动,用户体验下降。为了解决这个问题,"Ajax...
**jQuery 分页无刷新技术详解** 在Web应用中,数据量大时,一次性加载所有内容会导致页面加载速度慢,用户体验下降。为了解决这个问题,"无刷新分页"技术应运而生。它允许用户在不重新加载整个网页的情况下浏览多页...
2. **无刷新分页**:无刷新分页的核心在于利用AJAX技术,当用户点击分页链接或按钮时,仅需加载所需的数据部分,而不是整个页面。这减少了网络传输的数据量,加快了页面响应速度,同时保持了用户界面的流畅性。 3. ...
2.无刷新; 3.高效简洁; 4.基于jquery和.net(vs2008),适合GridView,Repeater等一切数据控件;(有时间再做一个java版的, 当然, 其实思路是一样的, java的同志也可以下载了研究一下, 不难的); 5.没有用数据库,而是用一个...
本教程将重点讲解如何在JSP(JavaServer Pages)中实现分页,包括页面刷新分页和无刷新分页,同时会涉及到MySQL数据库的使用以及Eclipse开发环境。 一、页面刷新分页 页面刷新分页是最传统的分页方法,当用户点击...
Ajax分页技术是一种在网页上实现无刷新分页的方法,它极大地提升了用户的浏览体验,减少了服务器的负担。这种技术利用了Ajax(异步JavaScript和XML)的核心特性,即在不重新加载整个页面的情况下,能够与服务器交换...
这个小DEMO是用C#写的无刷新实现分页。数据库就用 Sql2000自带的Northwind数据库。下载后,你只需要修改web.config的连接字符串,为你自己的配置就OK了。这个字符串连接估计不用我多说了吧。有问题EAMIL我。...
【jQuery AJAX无刷新分页与排序详解】 在Web开发中,提供用户友好的交互体验是至关重要的,而无刷新分页和排序正是提升用户体验的一种有效方式。本项目利用jQuery库结合AJAX技术,实现了在不刷新整个页面的情况下,...
2.无刷新; 3.高效简洁; 4.基于jquery和.net(vs2008),适合GridView,Repeater等一切数据控件;(有时间再做一个java版的, 当然, 其实思路是一样的, java的同志也可以下载了研究一下, 不难的); 5.没有用数据库,而是用一个...
这种形式的分页也是网上见得最多的,符合大部分网民的习惯,而且jQuery的引入,使本款分页效果实现无刷新,点击页码可直接显示内容,当然,测试页的内容不是太多,适合无刷新分页,当数据较多的时候,估计需要加入...
mvc5分页 mvc5分页 mvc5分页 mvc5分页 mvc5分页 mvc5分页 mvc5无刷新分页 mvc5无刷新分页 mvc5无刷新分页 mvc5无刷新分页 mvc5无刷新分页 mvc5无刷新分页
### ThinkPHP + AJAX无刷新分页技术解析 在现代Web开发中,用户体验是设计和实现网站时的关键考量因素之一。为了提升用户体验,无刷新页面更新技术变得越来越流行,其中AJAX(Asynchronous JavaScript and XML)...
**无刷新分页技术在MVC架构中的应用** 在现代Web开发中,用户对界面交互体验的要求越来越高,其中,无刷新分页(Ajax Pagination)成为提高用户体验的重要手段。无刷新分页允许用户在不重新加载整个页面的情况下,...
在这个"SSH+Mysql无刷新分页实例"中,我们将探讨如何利用SSH框架与MySQL数据库实现网页的无刷新分页功能,从而提高用户体验。 首先,SSH框架中的Spring负责控制层,它提供依赖注入(Dependency Injection,DI)和...
**jQuery无刷新分页排序**是一种高效的网页交互技术,它结合了Ajax和jQuery库的优势,为用户提供了流畅的浏览体验,无需每次操作都重新加载整个页面。这种技术在大数据量的展示场景中尤为常见,如在线表格、论坛、...
**Ajax无刷新分页技术详解** 在Web应用中,用户经常需要浏览大量的数据,例如电商网站的商品列表,社交网络的动态流等。传统的分页方式通常会在用户点击下一页按钮时,整个页面重新加载,这不仅消耗了网络带宽,也...
"tp3.2+ajax无刷新分页" 指的是使用ThinkPHP 3.2框架结合Ajax技术实现的无刷新分页功能。ThinkPHP 3.2是一个广泛使用的PHP开发框架,它提供了丰富的MVC(Model-View-Controller)架构支持,便于开发者构建Web应用。...
**ASP与AJAX无刷新分页技术详解** 在网页开发中,用户对于数据展示的体验需求日益提升,传统的页面整体刷新方式已经无法满足用户对于快速、流畅浏览的需求。此时,无刷新分页技术应运而生,它允许用户在不重新加载...
无刷新分页技术是网页开发中的一个重要概念,它允许用户浏览大量数据时无需等待页面完全重载即可切换页面。在传统的网页分页中,每点击一次分页按钮,整个页面都会重新加载,用户体验往往较差,尤其是在处理大数据量...