如题,<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/'); // trueregex.test('https://www.baidu.com/'); // trueregex.test('https://github.io/'); // trueregex.test('百度 https://baidu.com/'); // false但是这里有一个问题,如果我输入的内容例如:https://lalal.lalla这样也能通过校验,请问有什么办法能够完善么?
添加回答
举报
0/150
提交
取消