我尝试使用 onchange ,但是当您通过将鼠标光标聚焦在文本上来更改文本时它才起作用,但是当使用函数更改文本时它不会做任何事情
<input type="button" value="TestButton" onclick="AlterText()" />
<br />
<input id="txtbox1" type="text" onchange="AlertMe()" />
<script>
var counter = 0;
function AlterText(){
counter=counter +1;
document.getElementById('txtbox1').value = counter;
}
function AlertMe(){
alert("Done!..");
}
</script>