- 浏览: 51363 次
- 性别:
- 来自: 北京
最新评论
-
yangliuwillow:
javascript
jsp验证码 javax.imageio.IIOException: Can't create output stream! 问题解决方案 -
alfusen_xiong:
我也碰到这个问题,按照楼主的方法,确实可行。感谢楼主的分享精神 ...
jsp验证码 javax.imageio.IIOException: Can't create output stream! 问题解决方案
文章列表
jquery 验证
- 博客分类:
- javascript
/**
* 浮点数的判定
* @param type
* 为空 任意浮点数
* '0+' 非负浮点数
* '+' 正浮点数
* '-0' 非正浮点数
* '-' 负浮点数
*/
function isfloat(type){
var rt = new array();
if(type=="0+"){
rt[0] = "^\d+(.\d+)?$";
rt[1] = "应输入非负浮点数!";
}else if(type==" ...
Hibernate HQL 查询
- 博客分类:
- hibernate
import java.util.Date;
import java.util.List;
import org.hibernate.Query;
import org.hibernate.SQLQuery;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.AnnotationConfiguration;
import org.hibernate.tool.hbm2ddl.SchemaExport;
import org.junit ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN" dir="ltr">
<head>
<meta http-equiv=&quo ...
<?php
$options=array('1'=>'Male','2'=>'Female');
$GLOBALS['pay_method_strings']['pay_interval_list']=array (
'' => '',
'1' => '月结',
'2' => '季度结',
'3' => '年结',
'4' => '其它',
);
$GLOBALS['app_list_strings'][ ...
struts2 convention 配置
- 博客分类:
- struts2
<?
xml
version
=
"1.0"
encoding
=
"UTF-8"
?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts ...
新建:image.jsp
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
...
cmd 关闭一个端口进程,
- 博客分类:
- window
查询所有端口占用:netstat -a
关闭8080端口一个进程
for /f "tokens=5 " %a in ('netstat -ao^|findstr 8080') do @taskkill /F /PID %a
artDialog下载例子,jquerydialog例子,弹出窗例子
<SPAN style="FONT-SIZE: 16px"><body>
<%
long token=System.currentTimeMillis(); //产生时间戳的token
session.setAttribute("token",token);
%>
<form action="isRepeat" method="post">
...
jQuery:收集一些基于jQuery框架开发的控件/jquery插件。 收藏
Horizontal accordion: jQuery
基于jQuery开发,非常简单的水平方向折叠控件。
主页:http://letmehaveblog.blogspot.com/2007/10/haccordion-simple-horizontal-accordion.html (无法找到)
下载:http://letmehaveblog.blogspot.com/2007/10/haccordion-simple-horizontal-accordion.html
示例:http: ...
js 获取上传文件路径,兼容IE火狐
- 博客分类:
- javascript
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset ...
<html> <head> <script language="javascript" src="./jquery.js" ></script> <title>JS获取上传文件的绝对路径,兼容IE和FF</title> <script> $(function(){ $(".datatable thead").addClass('title'); $(".datatable tbody tr:even").ad ...
jQuery UI.Layout 参数说明
- 博客分类:
- jquery
首先,这个插件叫做:jQuery UI.Layout Plug-in 官方站点:http://layout.jquery-dev.net/
必须的文件是,jquery.js,jquery-ui.js,还有就是这个插件的js。但在研究的过程中发现了一个问题,在官网下载的js是有问题的,甚至性能上都有问题。要下载官网示例中使用的js,切记。。地址:http://layout.jquery-dev.net/lib/js/jquery.layout-latest.js
我还是硬着头皮把官方的文档看完了,可怜我那点英语水平啊。
把必要的js引入后,其实就可以正常运行了,参见官方最 ...