摘要:http://www.cnblogs.com/zeroone/archive/2010/05/05/1727659.html
阅读全文
摘要:问题:如图中,用js实现年月日,星期的显示。具体代码:<script type="text/javascript">$(function() { var myDate = new Date(); xinqu_nian.innerHTML = myDate.toLocaleDateString().substring(0,7);//年月 xinqu_ri.innerHTML = myDate.getDate();//日 xinqu_rihgt.innerHTML = myDate.toLocaleDateString()+' 星期'+'日一
阅读全文
摘要:解决方法:在工程目录下的.settings文件夹里,打开org.eclipse.wst.common.project.facet.core.xml文件。显示<?xml version="1.0" encoding="UTF-8"?>< faceted-project><runtime name="Apache Tomcat v5.0"/>< fixed facet="jst.web"/>< fixed facet="jst.java"/>
阅读全文
摘要:isnull(expr) 的用法: 如expr 为null,那么isnull() 的返回值为 1,否则返回值为 0。 mysql> select isnull(1+1); -> 0 mysql> select isnull(1/0); -> 1 使用= 的null 值对比通常是错误的。isnull() 函数同 is null比较操作符具有一些相同的特性。请参见有关is null 的说明。IFNULL(expr1,expr2)的用法:假如expr1 不为NULL,则 IFNULL() 的返回值为 expr1; 否则其返回值为 expr2。IFNULL()的返回值是数字或是
阅读全文
摘要:1、java代码中:String createtime = map.get("createtime").toString().substring(0, 19);// 结果为2013-05-15 09:05:13String createtime = map.get("createtime").toString().substring(0, 11);// 结果为2013-05-152、MySqlSELECT DATE_FORMAT(时间,'%Y-%m-%d') FROM 表名
阅读全文
摘要:url: 要求为String类型的参数,(默认为当前页地址)发送请求的地址。type: 要求为String类型的参数,请求方式(post或get)默认为get。注意其他http请求方法,例如put和 delete也可以使用,但仅部分浏览器支持。timeout: 要求为Number类型的参数,设置请求超时时间(毫秒)。此设置将覆盖$.ajaxSetup()方法的全局设 置。async:要求为Boolean类型的参数,默认设置为true,所有请求均为异步请求。 如果需要发送同步请求,请将此选项设置为false。注意,同步请求将锁住浏览器,用户其他操作必须等 待请求完成才可以执行。cache:要求为
阅读全文
摘要:$(function(){ kobe();}function kobe(){ var cs = 2; var now = new Date(); var sec = now.getSeconds(); var ad = sec % cs; alert(ad);//结果是1或0 if() { 业务的处理 } else { 业务的处理 }}
阅读全文
摘要:int count=0; String urlStr ="http://地址";try{ URL url = new URL(urlStr); BufferedReader reader = new BufferedReader(new InputStreamReader(url.openStream(),"GBK")); String line=null; do { line = reader.readLine(); if(line!=null) { str +=line;} } while(line!=null); reader.close(); c
阅读全文
摘要:SHOW PROCESSLIST;SHOW FULL PROCESSLIST;
阅读全文
摘要:<a href="javascript:void(0);" onclick="alert('正在维护中,请您稍后再试!');" title="弹出来">弹出来</a>
阅读全文
摘要:session在下列情况下被删除:A、程序调用HttpSession.invalidate()B、距离上一次收到客户端发送的session id时间间隔超过了session的最大有效时间C、服务器进程被停止关闭浏览器只会使存储在客户端浏览器内存中的session cookie失效,不会使服务器端的session对象失效。同样也不会使已经保存到硬盘上的持久化cookie消失。
阅读全文
摘要:前面的是java代码,写在java源文件中,或者jsp的<%%>中。后面的属于表达式,直接嵌在HTML代码中取值。例子:<script type="text/javascript"> if($.trim("${sessionScope.kobe}") == "") { top.location.href=http://www.baidu.com/;}</script>
阅读全文
摘要:import javax.servlet.http.HttpSession; //需要引入servlet-api.jar HttpSession session = request.getSession(); session.setAttribute("变量名", 值对象); session.getAttribute("变量名"); //此时取出来的是Object, 一般需要强转 例子: ArrayList al=(ArrayList)session.getAttribute("变量名"); for(int i=0;i<al.l
阅读全文
摘要:1、在tomcat下设置(1)C:\apache-tomcat-6.0.32\conf\web.xml<session-config> <session-timeout>30</session-timeout></session-config>注:30指分钟(2)C:\apache-tomcat-6.0.32\conf\server.xml<Context path="/livsorder" docBase="/home/httpd/html/livsorder"defaultSessionTimeO
阅读全文
摘要:<select id="servers_id" name="servers_name" style="margin-top:5px" class="_sel fl"><option value="-1">请选择服务器</option> <option value="1">服务器1</option> <option value="2">服务器2</option> <op
阅读全文
摘要:<select id="game_id" name="game" style="width:120px"> <option value="0">游戏一</option> <option value="0">游戏二</option> <option value="0">游戏三</option></select>1、读取所选的值var num = $("#game_id&qu
阅读全文
摘要:关于js中"window.location.href"、"location.href"、"parent.location.href"、"top.location.href"的用法"window.location.href"、"location.href"是本页面跳转"parent.location.href"是上一层页面跳转"top.location.href"是最外层的页面跳转举例说明:如果A,B,C,D都是jsp,D是C的ifram
阅读全文