为了账号安全,请及时绑定邮箱和手机立即绑定

关于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>

正在回答

4 回答

同问,为什么location.assign()可以而window.open()跳不动?

0 回复 有任何疑惑可以回复我~

1、window.open() 是打开新窗口,没效果是回为被网页拦截了,点开无限循环啊

2.   对比了下location.href比location.assign()跳转更快,location.href时间到0就跳了 location.assign()到0了还会出现负值,响应慢

1 回复 有任何疑惑可以回复我~

open后面是不是多了一个"."啊

0 回复 有任何疑惑可以回复我~

实际上 location.assign() 方法的效果与 location.href 是一样的

window.open()可以带多个参数,一般是跟本站没啥关系的时候用。新窗口打开的居多

1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

关于window.open 与 location.assign 的提问

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信