摘要:1、以name为选择对象时:<input name="password" type="password" class="person_txt"/>$("input[name=password]").bind('blur',function(){} //失去焦点时触发$("input[name=password]").bind('focus',function(){} //进入焦点时触发2、以id为选择对象时:<input id="pas
阅读全文
摘要:<div style="float:left;margin-left:7px;display:inline; padding-top:7px"><font color="red">充值总额:<label id="czze">0</label>元</font></div><div style="padding-top:5px;float:right;padding-right:4px;"><input name="&q
阅读全文
摘要:import java.util.Calendar;String idcard = request.getParameter("idcard");//身份证String chkidcard = idcard.toString().substring(6,10);//截取年Calendar cal = Calendar.getInstance();int year = cal.get(Calendar.YEAR);String fcm = "0";if(Integer.parseInt(idcard)+18>=year){fcm="1&qu
阅读全文
摘要:<script language="javascript" type="text/javascript" src="${ctx}/js/My97DatePicker/WdatePicker.js"></script><script type="text/javascript"><% java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat("yyyy-MM-dd"); ja
阅读全文
摘要:1.判断select选项中 是否存在Value="paraValue"的Item $("#selectid option[value='paraValue']").length>02.向select选项中 加入一个Item $("#selectid").append("<option value=''>1111<option>");3.从select选项中 删除一个Item $("#selectid").remove("&l
阅读全文
摘要:解决方法: IE”工具“菜单→“Interner选项”→“程序”选项卡里,确保“检查Internet Explorer是否为默认的浏览器”选项打上√。然后重启IE将会弹出检测默认浏览器的窗口,此时设置就可以了。
阅读全文
摘要:private String getKobe(String mburl){ URL url = null; BufferedReader reader = null; String str=""; try { url = new URL(mburl); reader = new BufferedReader(new InputStreamReader(url.openStream(),"UTF-8"));String line=null; do { line = reader.readLine(); if(line!=null) { str +=line
阅读全文
摘要:导入包:import javax.servlet.ServletContext;import javax.servlet.http.Cookie; import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import javax.servlet.http.HttpSession;import org.apache.struts2.ServletActionContext; import org.apache.struts2.interceptor.CookiesAwar
阅读全文
摘要:import java.util.Date;String tstamp = getUnixTime(new Date())+"";public static long getUnixTime(Date date){ if( null == date ) { return 0; } return date.getTime()/1000;}
阅读全文
摘要:问题描述:通过ajax传值,有时出现乱码和特殊字符。传中文出现乱码,传密码,对特殊字符的处理有问题。如jsp中输入的密码是:1111++11,在java中获取时是:1111 11.解决思路:通过加密和解密操作实现。(采取encodeURIComponent)具体如下:jsp页面中,password="+encodeURIComponent(encodeURIComponent(password));java中password = java.net.URLDecoder.decode(password,"UTF-8");
阅读全文
摘要:<HTML><HEAD> <TITLE>copy</TITLE> <SCRIPT language=javascript type=text/javascript> function kobe() { var url = document.getElementById("kobe").value; window.clipboardData.setData("Text",url); alert("已经复制到剪贴板!");} </SCRIPT></HEAD>
阅读全文
摘要:1、jsp页面照常传递参数。2、java页面接收时,String bt = request.getParameter("bt");if(bt!=""){ try { bt = new String(bt.getBytes("ISO-8859-1"),"utf-8"); } catch(UnsupportedEncodingException e) { e.printStackTrace(); }}
阅读全文
摘要:1、Windows > Preferences > MyEclipse Enterprise Workbench > Community Essentials, 把选项 "Search for new features on startup"的前勾去掉即可。2、另外关闭的Eclipse的自动更新:Windows > Preferences > Install/Update>automatic update,去掉automatically find new update and notify me的勾。
阅读全文
摘要:<c:forEach items="${images}" var="img" varStatus="status"> <div style="float:left;margin-right:10px;"> <img src="${ctx}${img.img_url}" width="500px" height="400px"/> </div></c:forEach>获取<c:forEach的
阅读全文
摘要:隐藏代码:<div id="bgy" style="display:none;"></div>显示方式:$("#bgy").css("display","block");//第1种方法$("#bgy").attr("style","display:block;");//第2种方法$("#bgy").show();//第3种方法注:等同的js方法document.getElementById(&
阅读全文
摘要:window.opener=null;window.open('','_self');window.close();
阅读全文
摘要:<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%><c:set var="kobe" value="${pageContext.request.contextPath}"/><script language="javascript" src="${kobe}/js/common/jquery-1.7.2.js"></script><script t
阅读全文
摘要:document.onkeydown = function(e){ var ev = document.all ? window.event : e; if(ev.keyCode==13) { kobe('1'); }}ev.keyCode==13 //回车的意思
阅读全文
摘要:1.#符号的用途一般有三种。 1)访问非根对象属性,例如示例中的#session.msg表达式,由于Struts 2中值栈被视为根对象,所以访问其他非根对象时,需要加#前缀。实际上,#相当于ActionContext. getContext();#session.msg表达式相当于ActionContext.getContext().getSession(). getAttribute(”msg”) 。 2)用于过滤和投影(projecting)集合,如示例中的persons.{?#this.age>20}。 3)用来构造Map,例如示例中的#{’foo1′:’bar1′, ’foo2′
阅读全文
摘要:方法一、 解决的办法自然是用相对路径代替绝对路径,其实log4j的FileAppender本身就有这样的机制,如:log4j.appender.logfile.File=${WORKDIR}/logs/app.log 其中“${WORKDIR}/”是个变量,会被System Property中的“WORKDIR”的值代替。这样,我们就可以在log4j加载配置文件之前,先用System.setProperty ("WORKDIR", WORKDIR);设置好根路径,此操作可通过一初始的servlet进行。 方法二、可以使用服务器环境变量 log4j的配置文件支持服务器的vm的
阅读全文