新发现原来documenet.URL也可以实现页面跳转

在JavaScript我们常常使用的跳转语句是:
window.location='//www.laike.net';
其实,我们也可以用下面的语句来代替:
document.URL='//www.laike.net/';
演示: