<!DOCTYPE HTML>
<html>
<head>
<title> DOM-createAttribute() and createElement() </title>
<meta charset="utf-8">
</head>
<body>
<button id="b" onclick="btn_click()">createElement()</button>
<script>
document.body.getElementsByTagName('button')[0].click = function(){
alert('1');
}
function btn_click(){
alert('1');
}
</script>
</body>
</html>
真心想不明白 document.body.getElementsByTagName('button')[0] 这段代码都能选中 button按钮了为什么不能为其绑定事件呢?
HTML?DOM
------解决方案--------------------
document.body.getElementsByTagName('button')[0].onclick = function(){
alert('1');
}