js 几种常用的表单输入判断
[ 2005-06-14 00:35:09 | 作者: admin ]
作者:AustinLei 时间: 2004-11-01 文档类型:转载 来自:CSDN
浏览统计 total:11045 | year:6800 | Quarter:3700 | Month:564 | Week:74 | today:2
//函数名:chksafe
//功能介绍:检查是否含有"'",'\\',"/"
//参数说明:要检查的字符串
//返回值:0:是 1:不是
function chksafe(a)
{
return 1;
/* fibdn = new Array ("'" ,"\\", "、", ",", ";", "/");
i=fibdn.length;
j=a.length;
for (ii=0;ii<i;ii++)
{ for (jj=0;jj<j;jj++)
{ temp1=a.charAt(jj);
...
阅读全文…
浏览统计 total:11045 | year:6800 | Quarter:3700 | Month:564 | Week:74 | today:2
//函数名:chksafe
//功能介绍:检查是否含有"'",'\\',"/"
//参数说明:要检查的字符串
//返回值:0:是 1:不是
function chksafe(a)
{
return 1;
/* fibdn = new Array ("'" ,"\\", "、", ",", ";", "/");
i=fibdn.length;
j=a.length;
for (ii=0;ii<i;ii++)
{ for (jj=0;jj<j;jj++)
{ temp1=a.charAt(jj);
...
阅读全文…
JavaScript实用的一些技巧
[ 2005-06-14 00:32:18 | 作者: admin ]
作者:AustinLei 时间: 2004-12-23 文档类型:转载 来自:CSDN
浏览统计 total:22555 | year:19635 | Quarter:8565 | Month:1239 | Week:183 | today:3
1. oncontextmenu="window.event.returnValue=false" 将彻底屏蔽鼠标右键
<table border oncontextmenu=return(false)><td>no</table> 可用于Table
2. <body onselectstart="return false"> 取消选取、防止复制
3. onpaste="return false" 不准粘贴
4. oncopy="return false;" oncut="return false;" 防止复制
...
阅读全文…
浏览统计 total:22555 | year:19635 | Quarter:8565 | Month:1239 | Week:183 | today:3
1. oncontextmenu="window.event.returnValue=false" 将彻底屏蔽鼠标右键
<table border oncontextmenu=return(false)><td>no</table> 可用于Table
2. <body onselectstart="return false"> 取消选取、防止复制
3. onpaste="return false" 不准粘贴
4. oncopy="return false;" oncut="return false;" 防止复制
...
阅读全文…
1