我需要对 CS 表单进行 URL 验证。我已经有一个脚本可以检查 http 并在不存在时添加它。但是,如果我添加另一个函数来进行验证,无论我把它放在哪里,它都会返回 URL 无效。
这就是我正在运行的
<script type="text/javascript">
$(function(){
$('.url').blur(function(e) {
if ($(this).val().match(/^http/) || $(this).val().match(/^https/)) /*define the http & https strings */ {
$.noop() /*if strings exist, do nothing */
}
else {
// get value from field
var cur_val = $(this).val();
// do with cur_val
$(this).val('http://' + cur_val);
}
});
});
</script>
这是我用于验证的第二个函数:
<script type="text/javascript">
function validate() {
var url = document.getElementById("url").value;
var pattern = /(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/;
if (pattern.test(url)) {
alert("Url is valid");
return true;
}
alert("Url is not valid!");
return false;
}
</script>
我究竟做错了什么?我试图合并这两个函数,但我的 js 技能选择了失败的那一刻。
谢谢!