1. 程式人生 > 其它 >小程式----實時檢測input輸入值

小程式----實時檢測input輸入值

技術標籤:前端小程式

直接上程式碼

wxml

<input type='text' bindinput="valueInput" value='{{searchValue}}' focus="{{focus}}" placeholder='商品名稱/訂單號'
            placeholder-class='placeholder' bindinput='setValue'></input>

js

 valueInput:function(e){ 
    this.setData({
      value: e.
detail.value }) },