请帮我写剧本。我不明白为什么我的脚本不起作用:(
<html>
<body>
<input type="text" id="input" onkeypress="myFunction()">
<input type="button" value="Hallo" id="but">
<script>
function myFunction{
document.getElementById('but').value = "changed";
}
</script>
</body>
</html>