- 浏览: 99172 次
- 性别:
- 来自: 广州
最新评论
-
marswrjs:
只有到市的,没有区/县的?
用jquery实现的邮编查询(可以自动提示城市) -
vera_sq:
补充一下xmlhttp.overrideMimeType这个b ...
AJAX overrideMimeType
文章列表
关于org.apache.axis2.AxisFault: First Element must contain the local name, Envelope , but found definitions异常。我这里遇到的造成错误的原因是:
IWebServiceForMSPStub stub = new IWebServiceForMSPStub("http://local/axis/services/IWebServiceForMSP?wsdl");
ReqSearchCustomInfo request = new ReqSearchCustomInfo(); ...
附表:
"0 0 12 * * ?" 每天中午12点触发
"0 15 10 ? * *" 每天上午10:15触发
"0 15 10 * * ?" 每天上午10:15触发
"0 15 10 * * ? *" 每天上午10:15触发
"0 15 10 * * ? 2005" 2005年的每天上午10:15触发
"0 * 14 * * ?" 在每天下午2点到下午2:59期间的每1分钟触发
"0 0/5 14 * * ?" 在每天 ...
- 2009-08-25 19:06
- 浏览 1813
- 评论(0)
function sendForm(){
var ftitle = $.trim($("#ftitle").val());
var fcontent = getContentValue("fcontent");
if(ftitle==""){
$("#tspan").css("color","red").html("标题不能为空!");
return false;
}
if(!fcon ...
- 2009-08-14 12:00
- 浏览 1575
- 评论(0)
<!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; char ...
- 2009-08-12 11:42
- 浏览 1272
- 评论(0)
<!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 ...
- 2009-08-04 21:17
- 浏览 2201
- 评论(0)
delimiter |
create procedure page_proce(
_column varchar(1000) ,
_table varchar(50) ,
_condition varchar(1000) ,
_order varchar(1000) ,
_pageCurrent int ,
_pageSize int ,
out _poutRecordCount int
)
begin
declare pageCnt int;
declare limitStart int;
declare limitEnd ...
- 2009-07-23 14:01
- 浏览 920
- 评论(0)
#include <stdio.h>
//值传递、地址传递、引用传递
int main(){
int a0 = 4,b0 = 6;
int a1 = 4,b1 = 6;
int a2 = 4,b2 = 6;
//值传递
Exchg1(a0, b0);printf("a0 = %d, b0 = %d.\n", a0, b0);
//地址传递
Exchg2(&a1, &b1);printf("a1 = %d, b1 = %d.\n", a1, b1);
//引用传递
Exchg3(a2, b2 ...
- 2009-07-13 11:51
- 浏览 916
- 评论(0)
<html>
<head>
<meta http-equiv="content-Type" content="text/html;charset=gb2312">
<title>js 只能输入数字和小数点</title>
<script language="JavaScript" type="text/javascript">
function clearNoNum(obj)
{
//先把非数字的都替换掉,除了数字和.
...
- 2009-06-30 15:29
- 浏览 1913
- 评论(0)
<title>表单验证类 Validator v1.05</title>
<style>
body,td{font:normal 12px Verdana;color:#333333}
input,textarea,select,td{font:normal 12px Verdana;color:#333333;border:1px solid #999999;background:#ffffff}
table{border-collapse:collapse;}
td{padding:3px}
input{height:20;}
...
- 2009-06-29 12:03
- 浏览 1655
- 评论(0)
固定电话、传真和手机js验证:
规则的国内固定电话和传真的格式基本都是带有0的区号+连接符“-”+电话号码,另外还有可能有分机号,区号有3位、4位,电话号码有7位和8位的;其它格式的有前面不带0的,或者不带连接符的,或者分机号前面使用#号的,或者前面加“+86”的等等;
区号:前面一个0,后面跟2-3位数字 : 0\d{2,3}
电话号码:7-8位数字: \d{7,8}
分机号:一般都是3位数字: \d{3,}
这样连接起来就是验证电话的正则表达式了:/^((0\d{2,3})-)(\d{7,8})(-(\d{3,}))?$/
手机号码前面以1开头,第二位现在是3或者5,后面是9位数 ...
- 2009-06-29 09:20
- 浏览 8539
- 评论(0)
正则表达式口诀 + 常用的正则表达式 + 正则表达式学习工具+正则处理工具 正则是每个程序员绕不开的堡垒,只有把它攻下来。我觉得正则之所以难,第一难是需要记忆,第二难是要求具备抽象逻辑思维。
签于网上太多的介绍都 ...
- 2009-06-17 13:04
- 浏览 1161
- 评论(0)
看了网上的,有几种方法:
1 在你的表单页里HEAD区加入这段代码:
<META HTTP-EQUIV="pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate">
<META HTTP-EQUIV="expires" ...
- 2009-06-15 16:33
- 浏览 1085
- 评论(0)
//用户名校验的方法
//这个方法将使用XMLHTTPRequest对象来进行AJAX的异步数据交互
var xmlhttp;
function verify() {
//0。使用dom的方式获取文本框中的值
//document.getElementById("userName")是dom中获取元素节点的一种方法,一 ...
- 2009-06-14 16:42
- 浏览 3396
- 评论(1)
HTML:
<!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>
<title>小小的工具 - Bo工具网 一网知天下</title>
<link href= ...
- 2009-06-09 16:09
- 浏览 2632
- 评论(1)
先来看看options集合的这几个方法:
options.add(option)方法向集合里添加一项option对象;
options.remove(index)方法移除options集合中的指定项;
options(index)或options.item(index)可以通过索引获取options集合的指定项;
var selectTag = null; //select标记
var OPTONLENGTH = 10; //每次填 ...
- 2009-06-09 10:10
- 浏览 1023
- 评论(0)