内容安全政策:该页面的设置阻止以内联方式(“ script-src”)加载资源。
在尝试将onclick事件添加到侧边栏中的按钮时,请在控制台中获取此错误
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<div id = "content"></div>
<script src="panel.js"></script>
<button id="createNewInstance" onclick="openDb()">New Category</button>
</body>
</html>
那是为什么?
答案 0 :(得分:0)
您不能在WebExtension页面中使用内联脚本或定义事件处理程序。您必须在外部JavaScript文件中添加事件处理程序。
panel.js
document.getElementById("createNewInstance").addEventListener("click", openDb)