这里为什么不行?
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script type="text/javascript">
window.onload=function(){
var bt=document.createElement("input");
bt.type="button";
bt.value="按钮";
bt.id="btn";
document.body.appendChild(bt);
bt.style.width="160px";
bt.style.height="60px";
}
function asd(){
alert(this.value);
}
var a=document.getElementById("btn");
a.addEventListener("click",asd(),false);
</script>
</head>
<body>
</body>
</html>
如题,加粗有底线的那段无效。。。不知为何。
http://www.imooc.com/video/2134