Phương thức open () của đối tượng window là cách tốt nhất để mở cửa sổ trình duyệt mới bằng JavaScript
Sau đây là mã để mở cửa sổ trình duyệt mới bằng JavaScript -
Ví dụ
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } </style> </head> <body> <h1>Open new browser window using JavaScript</h1> <br /> <button class="Btn">CLICK HERE</button> <h3>Click on the above button open a new browser window</h3> <script> let BtnEle = document.querySelector(".Btn"); BtnEle.addEventListener("click", (event) => { window.open("https://www.google.com"); }); </script> </body> </html>
Đầu ra
Khi nhấp vào nút ‘BẤM VÀO ĐÂY’, nó sẽ chuyển hướng đến trang web được chỉ định -