<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>浏览器对象</title>
</head>
<body>
<script type="text/javascript">
function demo(){
var i=window.open('http://www.imooc.com','_blank',width=600,height=600);
document.write(i);
}
demo();
</script>
</body>
</html>
我测了应该是:赋值给I的内容已经执行了,然后被销毁了,而且是连带i也被影响了