window.location="http://www.imooc.com/"; window.location.assign("http://www.w3school.com.cn"); window.location.href="http://www.imook.com"; window.open("http://www.imooc.com/","_blank","width=500px,height=500px"); 只有最后一行重新打开页面才有反应,其他的都没效果
哇 学到了
得引入JavaScript引用语句:<script type="text/javascript" language="javascript">
另外也得有HTML标签才行,具体如下:
<html>
<head>
<script type="text/javascript">
window.location="http://www.imooc.com/";
window.location.assign("http://www.w3school.com.cn");
window.location.href="http://www.imook.com";
window.open("http://www.imooc.com/","_blank","width=500px,height=500px");
</script>
</head>
</html>
还有注意你第二行结尾用了中文分号