我是javascript的新用户,我正在尝试创建一个获得recenf nfl分数的Chrome扩展程序。我添加了两个按钮,但是一旦扩展加载,它们就会被点击。为什么会这样?我在下面添加了我的EventListeners。
document.getElementById("reg").addEventListener("click",inter("http://www.nfl.com/liveupdate/scorestrip/ss.xml"));
document.getElementById("post").addEventListener("click",inter("http://www.nfl.com/liveupdate/scorestrip/postseason/ss.xml"));
答案 0 :(得分:2)
您需要将inter
函数包装在功能块中:
document.getElementById("reg").addEventListener("click",function() {inter("http://www.nfl.com/liveupdate/scorestrip/ss.xml")});
否则在浏览器解析它时执行。