首頁  >  文章  >  微信小程式  >  小程式如何取得input標籤的值

小程式如何取得input標籤的值

青灯夜游
青灯夜游轉載
2021-05-18 10:57:195127瀏覽

本篇文章為大家介紹微信小程式取得input標籤值的方法。有一定的參考價值,有需要的朋友可以參考一下,希望對大家有幫助。

小程式如何取得input標籤的值

取得微信小程式中input中的資料

<scroll-view>
<view id=&#39;titleView&#39;>
<text id="titleText">登录</text>
</view>
<view id=&#39;mainView&#39;>
<text>用户名</text>
<input class=&#39;input&#39; bindinput=&#39;usernameInput&#39;></input>
<text>密码</text>
<input class=&#39;input&#39; bindinput=&#39;passwordInput&#39;></input>
<button class="btn" bindtap=&#39;login&#39;>登录</button>
<button class=&#39;btn&#39; bindtap=&#39;toRegister&#39;>注册</button>
</view>
</scroll-view>

登入的js頁面

var app=getApp();
Page({
login:function(e){
<!--拼接url通过后台验证跳转
this.data.username获取标签中值-->
  var url = app.globalData.serverIp +"/user/login.html?"
  +"username="+this.data.username
  +"&password="+this.data.password;
  <!--为this赋值给全局对方法中调用-->
  var page=this;
  <!--用request进行后台传输-->
  wx.request({
    url: url,
    success:function(response){
      var serverData=response.data;
      var status=serverData.status;
      var msg="登录失败";
      if(status==200){
        msg="登录成功";
        //跳转商场首页navigateTo
        wx.navigateTo({
          url:"../storeindex/storeindex",
        })
         //把username保存到手机上
        //sync表示同步 setStorageSync函数的作用是同步保存数据相当于http中的cookie
        wx.setStorageSync("username", page.data.username);
      }
      wx.showToast({
        title: msg
      })
    },
    fail:function(e){
      console.log("联网失败");
      console.log(e);
    },
    
data: {
    username:"",
    password:""
  },
  usernameInput:function(e){
    this.data.username=e.detail.value;
  },
  passwordInput: function (e) {
    this.data.password = e.detail.value;
  },
  })
},

相關學習推薦:小程式開發教程

以上是小程式如何取得input標籤的值的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:csdn.net。如有侵權,請聯絡admin@php.cn刪除