<body>
<input type="button" name="按钮" value="按钮1" id="btn1" onclick="showthis()">
<input type="button" name="按钮" value="按钮2" id="btn2" >
<script>
var btn1=document.getElementByid('btn1');
var btn2=document.getElementByid('btn2');
function showthis(){
alert('弹出框');
}
btn2.onclick=function(){
alert("hello js");
}
</script>
</body>
请问点击按钮2为什么没效果?
getElementByid写错了,是getElementById;