Aurelia可绑定和插件/ jQuery更改

时间:2017-11-03 13:29:51

标签: jquery aurelia

我遇到了可绑定变量和jQuery插件的问题。我已经测试了这段代码,而且可绑定的var没有改变:

<template>
  <input id="my-input" value.bind="inputvalue" type="text">
</template>
class MyClass {
  @bindable inputvalue;

  constructor() {
    this.inputvalue = 'First value'
  }

  bind() {
    setTimeout(() => {
      $('#my-input').val('Some value').change();
      // In the input element the value now is 'Some value',
      // but in bindable var this.inputvalue the value still is 'First value'
    }, 4000);
  }
}

0 个答案:

没有答案