<script>
var OldValue = "";
function txt_Change(NewValue)
{
    if (OldValue != NewValue)
    {
        alert(NewValue);
        OldValue = NewValue;
    }
}
</script>
<body">
<input  type="text"  onKeyUp="txt_Change(this.value)">
</body>

相关文章:

  • 2022-12-23
  • 2021-12-09
  • 2022-12-23
  • 2021-07-19
  • 2021-12-19
  • 2022-01-15
  • 2021-12-19
猜你喜欢
  • 2021-07-03
  • 2021-12-21
  • 2021-12-19
  • 2022-12-23
  • 2021-12-19
  • 2021-12-20
  • 2021-12-19
相关资源
相似解决方案