Uploaded image for project: 'Weex (Retired)'
  1. Weex (Retired)
  2. WEEX-612

Android手机上input控件默认设置一个字符串后,然后清除不能触发input事件

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 0.18
    • None
    • Android
    • weex 0.18.0 、android 小米3 6.0系统

    Description

      1、weex测试demo:

      <template>
      <div>
      <text style="font-size: 40px">oninput: {{txtInput}}</text>
      <input type="text" placeholder="Input Text" class="input" :value="txtInput" :autofocus=true @input="oninput"/>
      </div>
      </template>
      
      <style scoped>
      .input {
      font-size: 60px;
      height: 80px;
      width: 750px;
      }
      </style>
      
      <script>
      var modal = weex.requireModule('modal')
      module.exports = {
      data: function () {
      return {
      txtInput: '外',
      };
      },
      methods: {
      oninput: function (event) {
      this.txtInput = event.value;
      modal.toast({
      message: "input: "+event.value
      })
      }
      }
      };
      </script>
      

       

      2、android清除input元素,input事件没有触发。

       

      Attachments

        Issue Links

          Activity

            People

              kyork York Shen
              huanng li tody
              Votes:
              1 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated: