关于window.open 与 location.assign 的提问
请问window.open() 与location.assign()的区别 与在什么时候使用 我这段代码 如果把标注地方换了就没有效果了 为什么啊
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>浏览器对象_编程练习</title>
<script type="text/javascript">
function back(){
window.history.back();
}
function change()
{setTimeout("open()",5000);
}
function open()
{location.assign("http://www.imooc.com");
//这里如果用window.open.('http://www.imooc.com');就不行了
}
change();
</script>
</head>
<body>
<input type="button" value="返回上页面" onclick="back()"/>
</body>
</html>