为什么button标签的onclick事件没有效果,而input可以呢
<form>
<button onclick="chac()">改变颜色</button>
<input type="button" onclick="chac()" value="改变颜色">
</form>
<script type="text/JavaScript">
function chac(){
var new_txt=document.getElementById("txt");
new_txt.style.color="red";
}
</script>