检查输入框是否以 http:// 或 www jquery 开头

发布于 2024-10-30 19:08:12 字数 50 浏览 1 评论 0原文

如何检查输入文本字段是否以 http:// 或 www 开头。用 jquery 提交?

How to check is input text field start with http:// or www. on submit with jquery?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(5

白云悠悠 2024-11-06 19:08:12

不需要昂贵的正则表达式。

String.prototype.startsWith = function(str) {
    return (this.length >= str.length)
        && (this.substr(0, str.length) == str);
}

String.prototype.startsWith_nc = function(str) {
    return this.toLowerCase().startsWith(str.toLowerCase());
}

var text = $('#textboxID').val();
if (text.startsWith_nc("http://") || text.startsWith_nc("www")) {
    alert("looks like a URL");
}

No need for expensive regular expressions.

String.prototype.startsWith = function(str) {
    return (this.length >= str.length)
        && (this.substr(0, str.length) == str);
}

String.prototype.startsWith_nc = function(str) {
    return this.toLowerCase().startsWith(str.toLowerCase());
}

var text = $('#textboxID').val();
if (text.startsWith_nc("http://") || text.startsWith_nc("www")) {
    alert("looks like a URL");
}
凤舞天涯 2024-11-06 19:08:12

您可以使用正则表达式来检查这一点。以下内容将遍历所有文本框,并打印到控制台(如果它们以 http:// 或 www 开头或不以 http:// 或 www 开头)

$('input[type=text]').each(function() {
  console.log($(this).val().match(/(^http:\/\/)|(^www)/) != null);
})

请参阅 fiddle < /a>http://jsfiddle.net/ZQRg2/1/

You can check this using regular expressions. The following goes through all textbox and prints to console if they begin with either http:// or www or not

$('input[type=text]').each(function() {
  console.log($(this).val().match(/(^http:\/\/)|(^www)/) != null);
})

See fiddle http://jsfiddle.net/ZQRg2/1/

情独悲 2024-11-06 19:08:12

我同意托马拉克的观点,这里不需要昂贵的正则表达式。

if($("#textboxID").val().indexOf("http://") == 0)
    alert('contains http://');

I agree with Tomalak, there's no need for expensive regex here.

if($("#textboxID").val().indexOf("http://") == 0)
    alert('contains http://');
梦中楼上月下 2024-11-06 19:08:12

这个怎么样?

String.prototype.startsWith = function(str) 
{return (this.match("^"+str)==str)}

if($("#textboxID").val().startsWith("http://"))
    alert('contains http://');

How about this?

String.prototype.startsWith = function(str) 
{return (this.match("^"+str)==str)}

if($("#textboxID").val().startsWith("http://"))
    alert('contains http://');
莳間冲淡了誓言ζ 2024-11-06 19:08:12

使用正则表达式:

if($("#my-input").val().match(/^(?:http:\/\/|www)/)) {
  // starts with http:// or www
}

Use a regular expression:

if($("#my-input").val().match(/^(?:http:\/\/|www)/)) {
  // starts with http:// or www
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文