<html>
<head>
<title>Page title</title>
<script language="JavaScript" type="text/javascript">
function oneClick()
{
document.write ("oneClick() executed.");
}
</script>
</head>
<body>
<input id = "button1" type = "button" value = "click" oneclick = "oneClick()" />
</body>
</html>
點擊按鈕後沒有任何反應,我認爲oneClick()不會執行!oneclick事件處理程序不執行