使用JavaScript进行特殊字符验证

编程入门 行业动态 更新时间:2024-10-10 02:16:22
本文介绍了使用JavaScript进行特殊字符验证的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

特殊字符< ,> ,%,'',, $ 和 ^ 。我需要进行验证检查,以便在提交时限制这些字符以及空检查。

Special characters <, >, %, '', "", $ and ^ are not allowed in a textbox. I need to put a validation check to restrict these characters on submit along with the null check.

我在一个函数中编写了整个验证代码,并在点击提交时调用它按钮,但单击时无法识别该功能。

I wrote entire validation code in a function and calling it on click of the submit button, but the function is not recognised on click.

请帮我编写一些JavaScript代码来实现此功能。

Please help me write some JavaScript code to achieve this functionality.

推荐答案

更简单的方法是在javascript中使用indexOf,

A much simpler way is to use indexOf in javascript,

function isSpclChar(){ var iChars = "!@#$%^&*()+=-[]\\\';,./{}|\":<>?"; if(document.qfrm.q.value.indexOf(iChars) != -1) { alert ("The box has special characters. \nThese are not allowed.\n"); return false; } }

更多推荐

使用JavaScript进行特殊字符验证

本文发布于:2023-11-27 18:40:12,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1639149.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:特殊字符   JavaScript

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!