📜  确定文本是否写入 jquery 中的输入文本 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:24.381000             🧑  作者: Mango

代码示例1
var timerid;
$("#input").on("input", function(e) {
  var value = $(this).val();
  if ($(this).data("lastval") != value) {

    $(this).data("lastval", value);
    clearTimeout(timerid);

    timerid = setTimeout(function() {
      //your change action goes here 
      console.log(value);
    }, 500);
  };
});