1. 程式人生 > >小程式input value獲取

小程式input value獲取

我不喜歡使用from表單提交,所以這裡不採用表單提交的方式咯;

先看看html程式碼:<view class="itemView">使用者名稱:
<input class="input" name="userName" placeholder="請輸入使用者名稱"
bindinput ="userNameInput"/>
</view>
<view class="itemView">密 碼:
<input class="input" password placeholder="請輸入密碼"
bindinput="passWdInput" />
</view>
<view class="viewName" style="background-color:#fbf9fe">
<button class="loginBtn" bindtap="loginBtnClick">登入</button>
</view>

login.wxml

複製程式碼
在看js程式碼:

login.js

複製程式碼

`// pages/index/login.js
Page({
data: {
userName: ”,
userPwd:””
},
//獲取使用者輸入的使用者名稱
userNameInput:function(e)
{
this.setData({
userName: e.detail.value
})
},
passWdInput:function(e)
{
this.setData({
userPwd: e.detail.value
})
},
//獲取使用者輸入的密碼
loginBtnClick: function (e) {
console.log(“使用者名稱:”+this.data.userName+” 密碼:” +this.data.userPwd);
}
,
// 使用者點選右上角分享
onShareAppMessage: function () {

}
})`

找了好久的問題才發現是bindtap打成了bandtap,希望以後仔細一點不要犯同樣的錯誤