SOURCE

console 命令行工具 X clear

                    
>
console
function currLocation()
{
alert(window.location)
}
function newLocation()
{
window.location="/index.html"
}
<input type="button" onclick="currLocation()" value="显示当前的 URL"> 
 <input type="button" onclick="newLocation()" value="改变 URL">