如何在 jQuery 中使用 preg_match?
我可以使用 preg_match 来验证 jQuery 中的电话号码吗?这是我的代码,不起作用:
if (!preg_match("/^[0-9]{3}-|\s[0-9]{3}-|\s[0-9]{4}$/", phone.val() )) {
phone.addClass("needsfilled");
phone.val(phonerror);
}
HTML
Can I use preg_match to validate phone number in jQuery? Here is my code which does not work:
if (!preg_match("/^[0-9]{3}-|\s[0-9]{3}-|\s[0-9]{4}$/", phone.val() )) {
phone.addClass("needsfilled");
phone.val(phonerror);
}
HTML<input id="phone" type="text" value="" name="phone" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Javascript 包含一个正则表达式引擎,可通过
string.match()
、string.replace()
和string.split()
访问功能。例如:
这应该为您提供与 preg_match() 基本相同的功能。
因此,要与问题中的 preg_match 进行相同的验证:
如果您绝对坚持使用一个名为
preg_match()
的函数,它的工作方式与 PHP 版本完全相同,那么有一个名为 PHPJS,旨在用Javascript实现PHP功能。快速浏览一下他们的网站就会发现,虽然他们目前没有完全正常工作的preg_match()
实现,但他们有一个 未完成的实现,您可能想查看。但坦率地说,内置的 Javascript.match()
函数应该绰绰有余。Javascript includes a regular expression engine, which is accessed via the
string.match()
,string.replace()
andstring.split()
functions.For example:
That should provide you with essentially the same functionality as
preg_match()
.So to do the same validation as the preg_match in your question:
If you absolutely insist on having a function called
preg_match()
which works exactly like the PHP version, there is a project called PHPJS, which aims to implement PHP functions in Javascript. A quick look at their site shows that although they don't currently have a fully workingpreg_match()
implementation, they have an unfinished implementation which you may want to look at. But frankly, the built-in Javascript.match()
function should be more than sufficient.要使用 PHP 函数,您必须向服务器发出 HTTP 请求(使用您想要测试的任何数据),然后解析响应。
最好使用 JavaScript 的原生正则表达式功能。
To use a PHP function, you will have to make an HTTP request to the server (with whatever data you want to test) and then parse the response.
Better to use JavaScript's native regular expression functionality.
RegExp.exec(string)
会起作用。试试这个:
src: http://javascriptkit.com/javatutors/redev3.shtml
RegExp.exec(string)
will work.try this:
src: http://javascriptkit.com/javatutors/redev3.shtml
您应该使用 String 对象的
match
函数,而不是使用 PHP 函数preg_match
。有关使用匹配函数的信息,请参阅 Mozilla 文档。Instead of using
preg_match
, which is a PHP function, you should use the String object'smatch
function. See the Mozilla docs for information on using the match function.