Macのchromeを使っているのですがフルスクリーンじゃない時は別ウィンドウで開けます。ですが、フルスクリーンにすると幅などを指定していても別タブで開いてしまいます。
別ウィンドウで開きたいのですがどうすれば良いのでしょうか。
htmll
1<form name="form1" method="post"> 2<input type="text" name="title"></input> 3<input type="button" value="button" onclick="openWindow()"></input> 4</from> 5 6<script> 7 function openWindow() { 8 window.open('post/checkContent.php','windo','width=500px,height=400px'); 9 document.form1.action = 'post/checkContent.php'; 10 document.form1.method = "post"; 11 document.form1.target = 'windo'; 12 document.form1.submit(); 13 } 14</script>
あなたの回答
tips
プレビュー