为什么使用-self 这个参数,窗口没有反应呢?
<!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(){
var mymessage=confirm("点击我,打开新窗口!");
if (mymessage=true)
{
window.open('http://www.imooc.com','_self','width=400,height=600,top=200,left=200,menubar=yes,toolbar=yes, status=yes,scrollbars=yes');
}
else
{
alert(" 请重新来一遍~");
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!">
</body>
</html>