自制小程序密码输入框显示隐藏

html


      
        
      
      
        
        
      
    

js

data: {
    isShowPassword: true
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
  
  },
  toggleShowPassword: function (e) {
    var isShowPassword = !this.data.isShowPassword;
    this.setData({
      isShowPassword: isShowPassword
    });
  },



你可能感兴趣的:(小程序)