decodeURI(location.href).slice(decodeURI(location.href).indexOf("=")+1)
//太长
decodeURI(location.href.split("=")[1])
//nice
decodeURI(location.href).slice(decodeURI(location.href).indexOf("=")+1)
//太长
decodeURI(location.href.split("=")[1])
//nice