请问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>
同问,为什么location.assign()可以而window.open()跳不动?
1、window.open() 是打开新窗口,没效果是回为被网页拦截了,点开无限循环啊
2. 对比了下location.href比location.assign()跳转更快,location.href时间到0就跳了 location.assign()到0了还会出现负值,响应慢
open后面是不是多了一个"."啊
实际上 location.assign() 方法的效果与 location.href 是一样的
window.open()可以带多个参数,一般是跟本站没啥关系的时候用。新窗口打开的居多