javascript を使用して window.open を使用すると、Internet Explorer で「無効な引数」が表示されます。どうすれば修正できますか?
「var newwindow = window.open (url, 'Popup Demo', 'toolbar=no, location=no, directory=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);".
これが私のコードです:
<script type="text/javascript" language="javascript">
<!--
function popitup(url) {
var w = 500;
var h = 500;
var left = (screen.width/2)-(w/2);
var top = (screen.height/2)-(h/2);
var newwindow = window.open (url, 'Popup Demo', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
if (window.focus) {
newwindow.focus();
}
return false;
}
// -->
</script>