window,open()中name的问题
<!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','newwindow','width=600px,height=400px,top=100px,letf=0');
}
</script>
</head>
<body>
<input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >
</body>
</html>
name是指被打开窗口的名称,那么这个名称是可以自定义的,还是说打开的是哪个网址,就显示该网址的名称?比如说我URL贴的是慕课网,name是‘newwindow’,打开之后窗口的名称还是慕课网。