单项选择题
A.document.getElementById("b1").onclick =function (){alert("hello");};
B.document.getElementById("b1").onclick =new Function("alert(’hello’);");
C.document.getElementById("b1").onclick =new function (){alert("hello");};
D.document.getElementById("b1").onclick =clickFunc;function clickFunc(){alert("Hello");}