17

所以我正在测试创建一个 chrome 扩展。我知道使用 Manifest v2,您不能在 popup.html 中使用 javascript。因此,我已将 javascript 移至单独的文件 popup.js。

我试图在弹出窗口中有一个简单的按钮来调用你好世界警报,但它根本不起作用。

此外,Chrome 的 Inspect Element 调试器不会显示任何错误。

popup.html

<html>
    <head>
        <title>Test</title>
        <script language='javascript' src='popup.js'></script>
    </head>
    <body>
        <form name='testForm'>
            <input type='button' id='alertButton' value='click me'>
        </form>
    </body>
</html>

popup.js

function myAlert(){
    alert('hello world')
}

window.onload = function(){
    document.addEventListener('DOMContentLoaded', function () {
        document.getElementById('alertButton').addEventListener('onclick', myAlert);
    }); 
}

清单.json

{
  "manifest_version": 2,
  "name": "Test",
  "description": "Test Extension",
  "version": "1.0",

  "icons": { 
    "48": "icon.png"
   },

  "permissions": [
    "http://*/*", 
    "https://*/*"
  ],

  "browser_action": {
    "default_title": "This is a test",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  }
}

有任何想法吗?

4

1 回答 1

19

只需删除window.onload

function myAlert(){
    alert('hello world');
}

document.addEventListener('DOMContentLoaded', function () {
    document.getElementById('alertButton').addEventListener('click', myAlert);
});
于 2013-02-10T19:07:22.707 回答