举例如下:
<%@ page contentType="text/htmlcharset=gb2312" %>
<%@ page language="java" import="java.sql.*"%>
<jsp:useBean id="connc" scope="page" class="db.ConnOracle"/>
<%
String sql = ""
String key = ""
String type= ""
String sortfield = ""
%>
<%
request.setCharacterEncoding("gb2312")
sql = "select * from student"
key = request.getParameter("mkey")
System.out.print(key)
type = request.getParameter("mtype")
sortfield = request.getParameter(
jsp搜索只支持当前页面搜索如存在翻页功能请使用java以页面列表为例:
1.在列表页单条记录外套一层<div><div name="searchName" search="J2联赛北九州金泽塞维"></div>
search为自定义属性 value为可搜索的关键字
2.js
$("[name='searchName']").each(function(){
var n = $(this).attr("search")
if(n.indexOf(name) == -1 )
{
$(this).hide()//隐藏不存在关键字的列表
}
})
//import org.hibernate.Criteria你说的功能用hibernate实现起来比较方便下面是代码:
Criteria criteria = session.createCriteria(CardSaleRecord.class)
//CardSaleRecord也就是你想查询的表所对应得实体类,但是要在映射文件中配置
//创建别名,可不要
criteria.createAlias("cityCode", "c")
criteria.createAlias("productCode", "p")
//从页面中获取来的模糊查询的条件
Date fromDate = cardSaleFormBean.getYearMonth()
Date toDate = cardSaleFormBean.getTimeSpan()
String cityCode = cardSaleFormBean.getCityCode().getCityCode()
String productCode = cardSaleFormBean.getProductCode().getProductCode()
String status = cardSaleFormBean.getSelectAuditStatus()
//根据条件是否为空,是否在sql语句中增加约束条件
if(null!=fromDate){
criteria.add(Restrictions.gt("saleDate", fromDate))
}
if(null!=toDate){
criteria.add(Restrictions.lt("saleDate", toDate))
}
if(!"default".equals(cityCode)){
criteria.add(Restrictions.eq("c.cityCode", cityCode))
}
if(!"default".equals(productCode)){
criteria.add(Restrictions.eq("p.productCode", productCode))
}
if(!"default".equals(status)){
criteria.add(Restrictions.eq("checkStatus", status))
}
//返回结果
return criteria.list()
既然是网站上用的,那就选择struts spring hibernate进行设计吧,现在的网站设计都会是用到。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)