javascript 过滤非法字符验证程序

这是一款用来在客户端过滤一些非法字符,可以防止一些不必要提供,更显得用户友好提示哦

javascript教程 过滤非法字符验证程序
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>javascript 过滤非法字符验证程序</title>
<script language="javascript"> 
 function EncodeUrl(str){ 
  var strUrl=str.replace(/r/g,"%0A");
  strUrl=strUrl.replace(/n/g,"%0D");
  strUrl=strUrl.replace(/"/g,"%22");
  strUrl=strUrl.replace(/'/g,"%27");
  return strUrl;
 }
 
 function check111net()
 {
  var www111cnNet= $('111cnNet').value;
  EncodeUrl(www111cnNet);
 }
 function $(id)
 {
  return document.getElementById(id);
 }
</script>
</head>
<body>
<form name="form1" method="post" action="">
  <label>
  <input type="text" name="textfield" id="111cnNet">
  </label>
  <p>
    <label>
    <input type="submit" name="button" id="button" value="提交"  onClick="javascript:return check111net();">
    </label>
  </p>
</form>
</body>
</html>

时间: 2024-10-26 01:50:34

javascript 过滤非法字符验证程序的相关文章

php批量过滤非法字符

php教程 批量过滤非法字符 function testAddslashes($array) {  if(!get_magic_quotes_gpc()) {   if(is_array($array)) {    foreach($array as $key => $val) {     $array[$key] = testAddslashes($val);    }   } else {       $array = addslashes($array);   }   $array=str

javascript html非法字符过滤与转换函数

javascript教程 html非法字符过滤与转换函数 <html xmlns="http://www.111cn.net/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title></title> <script language="

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.111cn.net/ 1999/xhtml"> <head> <meta http-equiv="cont

php 批量过滤非法字符

function testAddslashes($array) {  if(!get_magic_quotes_gpc()) {   if(is_array($array)) {    foreach($array as $key => $val) {     $array[$key] = testAddslashes($val);    }   } else {       $array = addslashes($array);   }   $array=str_replace("&a

非法字符替换程序

<?php //******************************************************** //-- 程序名称:StrSwap V1.0 //-- 程序用途:Get或Post提交值的非法数据处理 //-- 备注: 本程序需要加载在所有程序处理前使用,以便自动进行 //-- 程序中使用的变量的替换 //******************************************************** class StrSwap{ //当以Get方

正则表达式匹配html 过滤非法字符

匹配一个html标签,匹配table如下: <table.*?>[ss]*</table> 或 <table.*?>[ss]*?</table> 以上两个表达式,一个加了"?"和一个却不加"?",那么这有什么区别呢? 我们知道"?"在正则表达式里是一个通配符:匹配前面的子表达式零次或一次,或指明一个非贪婪限定符. 在这里,通过测试,我们得出这样的结论:在不加"?"的情况下,在匹配

php中过滤非法字符的具体实现_php实例

复制代码 代码如下: <?php class sqlsafe { private $getfilter = "'|(and|or)\\b.+?(>|<|=|in|like)|\\/\\*.+?\\*\\/|<\\s*script\\b|\\bEXEC\\b|UNION.+?SELECT|UPDATE.+?SET|INSERT\\s+INTO.+?VALUES|(SELECT|DELETE).+?FROM|(CREATE|ALTER|DROP|TRUNCATE)\\s+(T

php 过滤非法字符 与过滤html js css a等html标签代码

<form name="form1" method="post" action="">   <textarea name="content" cols="50" rows="10"></textarea>   内容  <input type="submit" name="Submit" value=&quo

在asp中过滤非法字符的函数

<%   Function cutbadchar(str)   badstr="不|文|明|字|符|列|表|格|式"   '此处填写不文明的词语,用|分开  badword=split(badstr,"|")   For i=0 to Ubound(badword)   If instr(str,badword(i)) > 0 then   str=Replace(str,badword(i),"***")   End If   Ne