使用 javascript 验证 http 和/或 www 并将其添加到字符串中
在javascript中,我得到一个字符串,应该是这样的:
- website.tld/something
- www.website.tld/something
- http:// /www.website.tld/something
(也是第三级和较低的域)
我需要第一个字符串是验证的,第二个如果字符串不属于第三种情况(http://www.website.tld /something),它必须连接“http://”和/或“www”。
任何人都有一些提示或知道在哪里可以找到实现此功能的现成脚本?
in javascript I get a string that should be something like:
- website.tld/something
- www.website.tld/something
- http://www.website.tld/something
(also third level and lower domains)
I need that 1st the string is validate, 2nd if the string isn't in the third case (http://www.website.tld/something), it has to concat "http://" and/or "www".
Anyone has some tip or knows where to find a ready-to-use script that implement this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 jQuery(或可以使用它),我推荐优秀的验证器插件,它具有验证 jQuery Validate
它很容易使用,并且运行良好
免责声明:我没有参与这个项目,也不知道创建者。只是一个简单满意的用户;-)
If you use jQuery (or can use it), I recommend the excellent validator plugin which has a built-in function which validates jQuery Validate
It's easy to use, and works well
DISCLAIMER: I am not involved in this project nor knowing the creator. Just a simple satisfied user ;-)
我会使用正则表达式来匹配,看看你应该采取什么行动。
I would use a regular expression to match to see what action you should take.