问答详情
源自:8-17 编程练习

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

提问者:慕用5745546 2016-05-06 21:11

个回答

  • 慕后端5186796
    2017-09-14 23:56:56

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

  • CHIKE1978
    2016-05-28 23:12:25

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

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

  • Y_oung__
    2016-05-06 21:53:35

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

  • 羯瑞410232098
    2016-05-06 21:44:12

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

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