单项选择题
var fun = function fn(){ return;alert(12); }; console.log(fun());打印结果是()
A.弹出12 B.程序报错 C.null D.undefined
A.event.stop() B.event.preventDeafult() C.event.stopPropagation() D.event.prevent()
A.btn.click=function(){} B.btn.onclick=function(){} C.btn.addEventListener(’click’,function(){}) D.btn.on(’click’,function(){})