Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 222 Bytes

File metadata and controls

12 lines (10 loc) · 222 Bytes

常用js方法

  • DIR01 倒计时

  • 网址校验

var reg = /(http|ftp|https):\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])?/
if (!reg.test(val)) {
  return false
  }
return true;