【多选题】下面html页面代码的功能是实现点击一个列表项时该列表项的背景颜色变成红色,划线的空白处可以填的选项有哪些?()Document
A. selectedLi
B. arguments[0]
C. arguments
D. event.target
E. this
【多选题】下面是通过在JavaScript中设置事件属性的写法来实现点击一个列表项时该列表项的背景颜色变成红色,脚本代码中for循环的循环体部分可以使用的选项有哪些?()Document
A. lis[i].onclick=function(){this.style.backgroundColor="red";};
B. lis[i].onclick=function(){lis[i].style.backgroundColor="red";};
C. lis[i].onclick=function(e){e.target.style.backgroundColor="red";};
D. lis[i].onclick=function(e){e.currentTarget.style.backgroundColor="red";};
E. lis[i].onclick=function(){event.target.style.backgroundColor="red";};