猿问

如何判断输入框中的文本是否为超链接?

如题,

<input type="text" />

<button type="button" class="submitLink">提交链接</button>

这是u3u提供的答案
用正则:^http(s)?:\/\/([\w-]+\.)+[\w-]+(\/[\w- ./?%&=]*)?$

var regex = /^http(s)?:\/\/([\w-]+\.)+[\w-]+(\/[\w- ./?%&=]*)?$/;

regex.test('http://www.baidu.com/'); // true

regex.test('https://www.baidu.com/'); // true

regex.test('https://github.io/'); // true

regex.test('百度 https://baidu.com/'); // false

但是这里有一个问题,如果我输入的内容例如:

https://lalal.lalla

这样也能通过校验,请问有什么办法能够完善么?


噜噜哒
浏览 1376回答 1
1回答
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答