#KLocation
使用正则匹配url模拟返回window.location的值
##构建状态
##使用方法
<script src="./KLocation.js"></script>
or
npm install klocation
##实例化:
KLocation("https://github.com?a=1&b=2")
/*Objcet{
url:"https://github.com?a=1&b=2",
host : "github.com",
protocol : "https:",
pathname : "/",
port : ''
hostname : "github.com"
}*/
##Method:
KLocation(url).getParam()
// {a:1,b:2}
-
getHost() // 获取url对应host
@return string
KLocation(url).getHost()
// github.com
KLocation(url).getProtocol()
// https:
-
getPort() // 获取url对应端口
@return string
KLocation(url).getPort()
// ''
KLocation(url).getPathname()
// "/"