自动检查并替换文本框内字符(过滤字符)的js代码

发布时间:2020-04-11编辑:脚本学堂
js代码实现自动检查文本框内的字符,然后用别的字符进行替换,好像很有用的哦,可以用来过滤垃圾字符,有需要的朋友参考下了。

完整代码如下:
 

复制代码 代码示例:

<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=gb2312'>
<title>自动检查并替换文本框内的字符_过滤字符_www.jb200.com</title>
<script>
<!-- Begin
function replaceChars(entry) {
out = "a"; // 要替代的字母
add = "z"; // 替换后的字母
temp = "" + entry;

while (temp.indexOf(out)>-1) {
pos= temp.indexOf(out);
temp = "" + (temp.substring(0, pos) + add +
temp.substring((pos + out.length), temp.length));
}
document.subform.text.value = temp;
}
// End -->
</script>
</head>
<body>
<center>
<form name="subform">
<input type=text name=text size=40 value="abcdabcd"><br>
<input type=button name=action value="Done!" onClick="replaceChars(document.subform.text.value);">
</form>
</center>
</body>
</html>