为什么 .change() 不起作用?



我有html

<span class="offersReceivedCount">3</span>

我想在 3 值更改为其他值时运行代码。我正在使用车把,所以真正的 html 看起来像

<span class="offersReceivedCount">{{offers}}</span> Offers Received</p>

我试过了

$(".offersReceivedCount").change(function(){
console.log("change");
});

但是当{{offers}}的值发生变化时,这永远不会记录任何内容

我是否需要不同的事件类型或尝试不同的方法?

你需要

的是一个ReactiveVar,并在其上定义一个相等函数。

Template['your-template'].onCreated = function() {
   this['offerReact'] = new ReactiveVar(this['offers'], function(oldValue, newValue) {
       if (oldValue !== newValue) {
           // run the function you want to trigger when value change 
           return false;
       } else {
           // no change, do nothing, just return true;
           return true;
       }
   });
}

因此,每当将新值设置为 offerReact 时,都会触发 equal 函数,然后开始运行要运行的事件

另一种方法(我不知道它对你有多好)是让输入"看起来像"一个 span 标签,请参阅 小提琴:https://jsfiddle.net/f1a990f1/

然后,您的代码将感知更改函数不适用于 span 标记。

.HTML

<input class="offersReceivedCount" type="text" value="333">
<script>
  $(".offersReceivedCount").change(function() {
    alert("change");
  });
</script>

.CSS

input {
  border: none;
  outline: none;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
}

相关内容

  • 没有找到相关文章

最新更新