检查输入框是否以 http:// 或 www jquery 开头
如何检查输入文本字段是否以 http:// 或 www 开头。用 jquery 提交?
How to check is input text field start with http:// or www. on submit with jquery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
不需要昂贵的正则表达式。
No need for expensive regular expressions.
您可以使用正则表达式来检查这一点。以下内容将遍历所有文本框,并打印到控制台(如果它们以 http:// 或 www 开头或不以 http:// 或 www 开头)
请参阅 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
See fiddle http://jsfiddle.net/ZQRg2/1/
我同意托马拉克的观点,这里不需要昂贵的正则表达式。
I agree with Tomalak, there's no need for expensive regex here.
这个怎么样?
How about this?
使用正则表达式:
Use a regular expression: