相同 name 的窗口只能创建一个,要想创建多个窗口则 name 不能相同。这句话怎么理解?
相同的name指的是什么?求大神
相同的name指的是什么?求大神
2016-07-22
<script type="text/javascript">
function Wopen1(){
window.open(
'http://www.imooc.com',
'_blank',
'width:600,height:400,top:1000,left:0,menubar:yes'
)
}
function Wopen2(){
window.open(
'http://http://www.ccb.com/',
'_blank',
'width:600,height:400,top:1000,left:0,menubar:yes'
)
}
</script>
</head>
<body>
<input name="button" type="button" onClick="Wopen1()" value="点击我,打开慕课网!" / ><br/>
<input name="button" type="button" onClick="Wopen2()" value="点击我,打开建行网!" / >
</body>
</html>
举报