javascriptが埋め込まれたhtml
<html>
<head>
<title>Example</title>
<script type ="text/javascript">
この関数を正しく呼び出しましたか????
function displayatts()
{
document.getElementById("buttonone").onclick = saysomething;
}
ここに何か問題がありますか?
function saysomething()
{
alert("I am 28 years old");
}
</script>
<body>
<input type="button" id="buttonone" value="me" >
</body>
</head>
</html>