<!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=gb2312" />
<title></title>
<script language="网页特效">
/**
* 验证数字
* (只能输入数字)
*
* @parameter string $str 字符串
* @return boolean
*/
function checknum(str){
return str.match(/^[0-9]*$/);
}
/**
* 验证26个英文字母
* (只能输入英文字母)
*
* @parameter string $str 字符串
* @return boolean
*/
function checkb(str){
return str.match(/^[a-za-z]*$/);
}
</script>
</head>
<body>
</body>
</html>
时间: 2024-11-25 15:23:57