我的法典
function Validate_URL(url) {
var iurl = url.value;
var v = new RegExp();
v.compile("/^(((ht|f){1}(tp:[/][/]){1})|((www.){1}))[-a-zA-Z0-9@:%_+.~#?&//=]+$/;");
if (!v.test(iurl.value)) {
url.style.backgroundColor = yellow ;
}
return true;
}
http://www.abc.com/newpage.html“rel=“nofollow noreferer” http://www.abc.com/newpage.html。 如何?