JavaScript 如何在新窗口打开链接
为此,使用window.open()和popup。
示例
以下是代码 –
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<body>
<a href="https:///www.google.com" target="popup"
onclick="window.open('https:///www.google.com','popup','width=500,height=500'); return false;">
GET THE POPUP WINDOW WITH LINK
</a>
</body>
<script>
</script>
</html>
要运行上述程序,保存文件名 “anyName.html(index.html)”。右击该文件,在VSCode编辑器中选择 “用Live Server打开 “选项 −
输出
这将在控制台产生以下输出 −
现在点击该链接,你会得到新的弹出窗口。
这将产生以下输出 −