lushengdi
几个常用的js判断方法 CheckForm
1
function
isInt(intValue)
{
2
var
intPattern
=/^
0
$
|^
[
1
-
9
]\d
*
$
/
;
//
整数的正则表达式
3
result
=
intPattern.test(intValue);
4
return
result;
5
}
6
7
function
isFloat(floatValue)
{
8
var
floatPattern
=/^
0
(\.\d
+
)
?
$
|^
[
1
-
9
]\d
*
(\.\d
+
)
?
$
/
;
//
小数的正则表达式
9
result
=
floatPattern.test(floatValue);
10
return
result;
11
}
12
function
isEmail(emailValue)
{
13
var
emailPattern
=/^
[
^
@.]
+
@([
^
@.]
+
\.)
+
[
^
@.]
+
$
/
;
//
邮箱的正则表达式
14
result
=
emailPattern.test(emailValue);
15
return
result;
16
}
17
function
isNum(obj,alt)
{
18
var
numPattern
=/^
\d
*
$
/
;
//
数字的正则表达式
19
result
=
numPattern.test(obj.value);
20
if
(
!
result)
{
21
alert(alt);
22
obj.focus();
23
}
24
return
result;
25
}
26
27
function
isChar(obj,alt)
{
28
var
charPattern
=/^
[a
-
zA
-
Z]
*
$
/
;
//
是否为字母
29
result
=
charPattern.test(obj.value);
30
if
(
!
result)
{
31
alert(alt);
32
obj.focus();
33
}
34
return
result;
35
}
36
37
function
isCharNum(flagValue)
{
38
var
flagPattern
=/^
[a
-
zA
-
Z0
-
9
]
*
$
/
;
//
是否为字母和数字(传真标识符)
39
result
=
flagPattern.test(flagValue);
40
return
result;
41
}
42
function
isBlank(obj,alt)
{
43
if
(obj.value
==
""
)
{
44
alert(alt);
45
obj.focus();
46
return
true
;
47
}
48
return
false
;
49
}
50
posted on 2009-07-06 10:12
鲁胜迪
阅读(1282)
评论(0)
编辑
收藏
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
Powered by:
BlogJava
Copyright © 鲁胜迪
<
2009年7月
>
日
一
二
三
四
五
六
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
7
8
导航
BlogJava
首页
新随笔
联系
聚合
管理
统计
随笔 - 122
文章 - 0
评论 - 89
引用 - 0
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
(4)
给我留言
查看公开留言
查看私人留言
随笔分类
Flex(1)
(rss)
Hibernate(4)
(rss)
JBPM(2)
(rss)
lucene(1)
(rss)
Play Framework(1)
(rss)
一点点(23)
(rss)
系统防卫(3)
(rss)
问题集(3)
(rss)
随笔档案
2015年1月 (1)
2014年11月 (1)
2013年11月 (1)
2013年7月 (1)
2013年2月 (2)
2013年1月 (1)
2012年9月 (2)
2012年8月 (2)
2012年5月 (2)
2012年4月 (1)
2012年3月 (2)
2012年2月 (2)
2011年12月 (3)
2011年6月 (2)
2010年12月 (1)
2010年9月 (2)
2010年7月 (4)
2010年4月 (1)
2010年1月 (2)
2009年11月 (2)
2009年8月 (1)
2009年7月 (2)
2009年6月 (2)
2009年2月 (1)
2009年1月 (2)
2008年12月 (3)
2008年11月 (2)
2008年10月 (7)
2008年9月 (7)
2008年8月 (6)
2008年7月 (9)
2008年6月 (5)
2008年5月 (5)
2008年4月 (5)
2008年3月 (11)
2008年2月 (2)
2008年1月 (6)
2007年12月 (3)
文章分类
FLEX
(rss)
新闻分类
J-Hi
(rss)
搜索
最新评论
1. re: Mysql 免安装 配置步骤
很好
--刘梅
2. re: Mysql 免安装 配置步骤
不错
--刘梅
3. re: javascript传值给jsp 简单实例
11
--11
4. re: Myeclipse10下载,安装,破解,插件,优化介绍
好用
--严梦婷
5. re: JSF 带参数 页面重定向
谢谢啊是到底
--阿萨
阅读排行榜
1. oracle exp/imp 导入导出命令(53910)
2. Tomcat(免安装版)的安装与配置 配置成windows服务(22223)
3. oracle创建表空间,创建用户以及授权(21077)
4. plsql developer 下载、注册及破解方法(18655)
5. Myeclipse10下载,安装,破解,插件,优化介绍(15780)
评论排行榜
1. plsql developer 下载、注册及破解方法(16)
2. oracle创建表空间,创建用户以及授权(12)
3. jbpm-starters-kit-3.1.2.zip官方下载地址(8)
4. Named query not known(解决)(6)
5. Myeclipse10下载,安装,破解,插件,优化介绍(5)