因此,我创建了一个chrome扩展程序,单击扩展程序时会出现一个弹出窗口。有一个按钮,单击后应在新选项卡中打开网站。单击按钮时,我似乎无法打开选项卡。香港专业教育学院尝试只使用HTML和Java脚本,但没有任何效果。我检查了弹出窗口,我没有任何错误。如果有人可以帮助id欣赏它。
popup.js
var myBtn=document.getElementById('myButton');
myBtn.addEventListener('click', function(event){
window.location.href='my link'
});
index.html
<html>
<head>
<title>Title</title>
<style>
body {
background-color: darkblue;
text-align: center;
padding: 50px;
}
h1 {
font-size: 20px;
color: white;
}
</style>
</head>
<body>
<h1>Title</h1>
<input id="myButton" type="button" value="my button" />
<script src="popup.js">
</script>
</body>
</html>