求大佬赐教
是只有使用_blank那些控制宽度高度的设置才可以起作用吗,那些设置为什么对_top不起作用,还有为什么使用_self连网页都都显示不出来,求大佬赐教
是只有使用_blank那些控制宽度高度的设置才可以起作用吗,那些设置为什么对_top不起作用,还有为什么使用_self连网页都都显示不出来,求大佬赐教
2018-05-11
我这里运行你的代码没问题啊!应该是慕课网的问题,我用Sublime来运行也是可以的!
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>window.open</title><script type="text/javascript"> function Wopen(){window.open("http://www.imooc.com","_self","width=600,height=400,top=100,left=100"); } </script></head><body> <input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" /></body></html>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>window.open</title>
<script type="text/javascript">
function Wopen(){
window.open("http://www.imooc.com","_self","width=600,height=400,top=100,left=100");
}
</script>
</head>
<body>
<input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" >
</body>
</html>
举报