執行 ❯
建立您
自己的
網站
×
改變方向
儲存程式碼
改變主題, 深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <head> <script> function openWin() { window.open("https://w3schools.tw","_blank","toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width=400, height=400"); } </script> </head> <body> <form> <input type="button" value="Open Window" onclick="openWin()"> </form> </body> </html>