function(str) {
//str= http://localhost:63342/erajs.examples/./ccs/html/CcsDealInput.html
var RegUrl = new RegExp();
RegUrl.compile("^[A-Za-z]+://[A-Za-z0-9-_]+\.[A-Za-z0-9-_%&\?\/.=]+$");
if (!RegUrl.test(str)) {
return false;
}
return true;
}
正則表達式:
^[A-Za-z]+://[A-Za-z0-9-_]+\.[A-Za-z0-9-_%&\?\/.=]+$
意思是:
以至少一個字母開頭,接著是://然後是至少有一個(英文字母或數字或-_)然後跟著小數點,後面還有在 數字或英文字母或-_%&/.= 這些符號裡至少一個。
說白了就是配置一個URL。看圖可能就更清楚一點了: