例如:
你有这个字符串:var x = "/windows/far/away/foo.jpg"
如果该字符串是 URL,我现在怎么办?
我需要做的是:
if (x.charAt(0) == '/') {
x = "http://www.example.com/" + x;
}
else {
x = "http://www.example.com/one/two/three" + x;
}
这里的问题是:当 x 成为 URL 时会发生什么?喜欢:
x = "http://www.externalpage.com/foo.jpg";
如您所见,x.charAt(0)
is'h'
和结果将是:
http://www.example.com/one/two/threehttp://www.externalpage.com/foo.jpg
现在,解决方案“可能”是这样的:
if (is_valid_url( x )) {
....
}
else {
....
}
我为此使用此功能:
function is_valid_url(str) {
var pattern = new RegExp('^(https?:\/\/)?'+ // protocol
'((([a-z\d]([a-z\d-]*[a-z\d])*)\.)+[a-z]{2,}|'+ // domain name
'((\d{1,3}\.){3}\d{1,3}))'+ // OR ip (v4) address
'(\:\d+)?(\/[-a-z\d%_.~+]*)*'+ // port and path
'(\?[;&a-z\d%_.~+=-]*)?'+ // query string
'(\#[-a-z\d_]*)?$','i'); // fragment locater
if(!pattern.test(str)) {
alert("Please enter a valid URL.");
return false;
} else {
return true;
}
}
但此功能仅适用于 http 和 https,不适用于其他方案,如 ftp 或其他....
我希望你能理解这个问题并给我一个解决方案。谢谢。