JavaScriptでブラウザのウィンドウを開く方法
js
let windObj = window.open(
url,
xxx,
"width=xxx,height=xxx,resizable=yes,scrollbars=yes,menubar=no,toolbar=no"
);js
windowObj.location.href = url;
windowObj.focus(); // Optionlet windObj = window.open(
url,
xxx,
"width=xxx,height=xxx,resizable=yes,scrollbars=yes,menubar=no,toolbar=no"
);windowObj.location.href = url;
windowObj.focus(); // Option