<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title>浏览器的兼容问题</title>
</head>
<body>
<input type="button" value="按钮1" id="but1" onclick="message()"/>
<input type="button" value="按钮2" id="but2"/>
<input type="button" value="按钮3" id="but3"/>
<script type="text/javascript">
//HTML事件处理程序
function message()
{
alert("Hello world!");
}
//DOM0级事件处理程序
var A=document.getElementById("but2");
A.onClick=function(){
alert("World!");
}
</script>
</body>
</html>
onclick的c小写
可能是浏览器缓存问题,现在好了。