微信小程序input赋值

//事件处理函数
  inputUsernameTap:function(e){
    this.setData({username:e.detail.value});
    wx.setStorageSync('username',e.detail.value);
  },

你可能感兴趣的:(微信小程序input赋值)