參數(shù)如何起作用啊
<title>window.open</title>
<script type="text/javascript">
? function Wopen(){
? ? window.open('http://idcbgp.cn','_blank','width = 600, height = 400, top = 100px, left = 0')?
? ??
? }?
</script>
</head>
<body>
? ? <input name="button" type="button" onClick="Wopen()" value="點(diǎn)擊我,打開(kāi)新窗口!" / >
</body>
</html>
代碼如上,感覺(jué)沒(méi)起作用
2016-04-18
更改為:window.open('http://idcbgp.cn','_blank','width = 600, height = 400, top = 100, left = 0')
改了top=100px
2016-04-18
? ? ? window.open('http://idcbgp.cn','_blank','width=600,height=400,top=100;,left=0');
2016-04-18
? window.open('http://idcbgp.cn','_blank','width = 600px, height = 400px, top = 100px, left = 0px') ;