location 属性が設定されている場合、ページは javascript の実行をリダイレクトしませんが、window.open はすぐに実行されます。なぜ?これに関する文書はありますか?? 以下はテストコードです..
<html>
<head>
<script type="text/javascript">
window.location.href = ("http://www.baidu.com");
window.open('http://google.com');
//alert(1);
</script>
</head>
<body>
<img src="http://pic5.bbzhi.com/fengjingbizhi/zhongguolvyoufengguanggaoqingbizhi/zhongguolvyoufengguanggaoqingbizhi_448610_9.jpg?q=1"
/>
</body>
</html>