如何在AngularJS中添加事件监听器?我正在使用AngularJS制作视频标签,这是我的代码:
HTML
<video id="video" width="400" controls>
<source src="http://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">
</video>
<script>
document.addEventListener("visibilitychange", onchange);
function onchange (evt) {
document.getElementById("video").pause();
}
</script>