.addEventListener中的功能不起作用

问题描述 投票:0回答:1

var key = document.getElementsByTagName('button')[0];

key.addEventListener('click', colorIt, false);

function colorIt(e) {
  document.body.style.backgroungColor = '#F00';
}
<div id="yabanner">
</div>
<button id="button">Click Me</button>

<!-- script contents above
<script src="index.js"></script>
-->

我不知何故出现了该函数未与事件连接的错误:(

javascript dom
1个回答
1
投票

colorIt功能中有一个错字:backgroungColor-> backgroundColor

© www.soinside.com 2019 - 2024. All rights reserved.