frontEnd_book icon indicating copy to clipboard operation
frontEnd_book copied to clipboard

在输入框中如何判断输入的是一个正确的网址

Open hanyueqiang opened this issue 4 years ago • 0 comments

function isUrl(url) {
       try {
           new URL(url);
           return true;
       }catch(err){
     return false;
}}

hanyueqiang avatar Dec 29 '20 02:12 hanyueqiang