setTimeout(window.open("http://www.baidu.com","_self"),5000); 为什么不能让页面5秒后打开网址?
那是因为对于setTimeout,第一个参数是需要引号包住的,正确写法如下:
setTimeout('window.open("http://www.baidu.com","_self")',5000);
用location.assign