1. 程式人生 > >小程式input密文

小程式input密文

type = "password"表示密文  這是小程式自帶的密文方法。也就是在這上面做文章。

<input type="ifshow" placeholder="請輸入登入密碼"/>

ifshow: "password", //表示密文

//  ifshow: "text",   非密文

 

/**

*判斷的方法

*/

showPassword: function () {

if (this.data.ifshow==“password) { //如果是密文,則改成非密文

this.setData({

show: "text"

})

} else {

this.setData({

show: "password"

})

}

},