码迷,mamicode.com
首页 > Web开发 > 详细

js_判断当前url是否合法http(s)

时间:2018-04-17 11:34:04      阅读:348      评论:0      收藏:0      [点我收藏+]

标签:hid   分享   turn   obj   closed   html   set   title   splay   

 1 alert(checkURL(‘http:555‘)); //false
 2 function checkURL(URL) {
 3     var str = URL,
 4         Expression = /http(s)?:\/\/([\w-]+\.)+[\w-]+(\/[\w- .\/?%&=]*)?/,
 5         objExp = new RegExp(Expression);
 6     if(objExp.test(str) == true) {
 7         return true
 8     } else {
 9         return false
10     }
11 }

全部代码:

技术分享图片
 1 <!DOCTYPE html>
 2 <html>
 3 
 4     <head>
 5         <meta charset="UTF-8">
 6         <title></title>
 7     </head>
 8 
 9     <body>
10         <script type="text/javascript">
11             alert(checkURL(‘http:555‘)); //false
12             function checkURL(URL) {
13                 var str = URL,
14                     Expression = /http(s)?:\/\/([\w-]+\.)+[\w-]+(\/[\w- .\/?%&=]*)?/,
15                     objExp = new RegExp(Expression);
16                 if(objExp.test(str) == true) {
17                     return true
18                 } else {
19                     return false
20                 }
21             }
22         </script>
23     </body>
24 
25 </html>
View Code

 

js_判断当前url是否合法http(s)

标签:hid   分享   turn   obj   closed   html   set   title   splay   

原文地址:https://www.cnblogs.com/wush-1215/p/8862091.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!