检查是否为 http 协议,1 是,-1 为 https,0 啥也不是。
字符串值
isHttp('http://test.com'); /// 1isHttp('http:test.com'); /// 0isHttp('https://test.com'); /// -1isHttp('12345'); /// 0 Copy
isHttp('http://test.com'); /// 1isHttp('http:test.com'); /// 0isHttp('https://test.com'); /// -1isHttp('12345'); /// 0
检查是否为 http 协议,1 是,-1 为 https,0 啥也不是。