页面加载

时间:2015-12-29 01:59:58

标签: javascript

我是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"));

1 个答案:

答案 0 :(得分:2)

您需要将inter函数包装在功能块中:

document.getElementById("reg").addEventListener("click",function() {inter("http://www.nfl.com/liveupdate/scorestrip/ss.xml")});

否则在浏览器解析它时执行。