window.location.reload(); // 刷新当前页面
parent.location.reload(); // 刷新父级页面
opener.location.reload(); // 刷新父窗口页面(用于单开窗口)
top.location.reload(); // 刷新最顶端页面(用于多开窗口)
window.open(); // 打开窗口
window.close(); // 关闭一个窗口(关闭窗口本身用self)
window.alert('弹窗信息') // 弹出提示信息(常用,不过用了ui库之后很少用了);
window.confirm('确认框信息'); // 弹出确认框
window.prompt(); // 弹出输入提示框:
window.location.href= 'http://xx.com'; // 跳转某给链接 后面等号不接url可打印当前url
console.log(window.location.href) // 打印当前url
window.open("http://xx.com", "_blank"); // 从新页面打开url