如何在 jQuery 中使用 preg_match?

发布于 2024-11-07 10:36:49 字数 320 浏览 0 评论 0原文

我可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

千と千尋 2024-11-14 10:36:49

Javascript 包含一个正则表达式引擎,可通过 string.match()string.replace()string.split() 访问功能。

例如:

var mystring = "this is a sentence";
mystring = mystring.replace(/sentence/,'string');

var matches = mystring.match(/\b\w+\b/);

这应该为您提供与 preg_match() 基本相同的功能。

因此,要与问题中的 preg_match 进行相同的验证:

if(!phone.val().match(/^[0-9]{3}-|\s[0-9]{3}-|\s[0-9]{4}$/)) {
     phone.addClass("needsfilled");
     phone.val(phonerror);
}

如果您绝对坚持使用一个名为 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() and string.split() functions.

For example:

var mystring = "this is a sentence";
mystring = mystring.replace(/sentence/,'string');

var matches = mystring.match(/\b\w+\b/);

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(!phone.val().match(/^[0-9]{3}-|\s[0-9]{3}-|\s[0-9]{4}$/)) {
     phone.addClass("needsfilled");
     phone.val(phonerror);
}

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 working preg_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.

多孤肩上扛 2024-11-14 10:36:49

要使用 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.

洛阳烟雨空心柳 2024-11-14 10:36:49

RegExp.exec(string) 会起作用。

试试这个:

var pattern= "/your pattern/";
var result = pattern.exec ( $("#phone").val() );
// true if match

src: http://javascriptkit.com/javatutors/redev3.shtml

RegExp.exec(string) will work.

try this:

var pattern= "/your pattern/";
var result = pattern.exec ( $("#phone").val() );
// true if match

src: http://javascriptkit.com/javatutors/redev3.shtml

小红帽 2024-11-14 10:36:49

您应该使用 String 对象的 match 函数,而不是使用 PHP 函数 preg_match。有关使用匹配函数的信息,请参阅 Mozilla 文档

Instead of using preg_match, which is a PHP function, you should use the String object's match function. See the Mozilla docs for information on using the match function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文