// locationconsole.log(location.href) // 整个网址console.log(location.protocal) // 'https' 'http'console.log(location.pathname) // 'learn/199'console.log(location.host) // 域名console.log(location.search) // ?后面console.log(location.hash) // #后面//historyhistory.back() // 后退history.forward() // 前进
