Home  >  Article  >  Web Front-end  >  js 验证(判断)是否为网址

js 验证(判断)是否为网址

WBOY
WBOYOriginal
2016-06-01 09:55:012416browse

实例代码如下:

<code> 
 
<script language="JavaScript"> 
<!-- 
function Validate(form) { 
    var v = new RegExp(); 
    v.compile("^[A-Za-z]+://[A-Za-z0-9-_]+\\.[A-Za-z0-9-_%&\?\/.=]+$"); 
    if (!v.test(form["URL"].value)) { 
        alert("You must supply a valid URL."); 
        return false; 
    } 
} 
//--> 
</script> 
 
 
<form name="MyForm" action="" method="POST" onsubmit="return Validate(this);"> 
<input type="TEXT" name="URL" value="http://"> 
<input type="SUBMIT" name="SUBMIT" value="SUBMIT"> 
</form> 
 
</code>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn