我确定我在这里遗漏了一些基本部分,但请看一下我非常简单的代码:
<html>
<head>
<script>
function showscore(){
var score = document.createTextNode("test");
var placeholder = document.getElementById("field");
placeholder.value = score.nodeValue;
}
</script>
</head>
<body>
<form>
<input type="text" id="field"/>
<input type="submit" value="Show score" onclick="javascript:showscore()" />
</form>
</body>
</html>
当我运行它时,结果(目前,“测试”一词)在输入字段中出现了很短的时间,然后消失了。
我错过了什么非常简单和容易的事情?:-)
非常感谢。