微信小程序,实现input 键盘“下一项”功能

声明在前,我是做iOS开发的,最近在研究小程序,对HTML了解的也是相当的少,所以你懂的,做小程序反应就稍慢点,不过我在学啊O(∩_∩)O哈哈~。根据官方的小程序简易教程按着流程一步一步的做还是很好入门的,大家有兴趣的可以试一下,保证不是骗人的。
在使用的过程中,我遇到了一个问题:input标签可以设置键盘的confirm键的名字叫“下一项”也就是“next”,但是却没有实现功能。其实在iOS上怎么实现我也不知道,我只知道有一个三方IQKeyboardManager相当好用。
废话不多说,直接汇报结果:

结果图

界面如上图,要实现输入一行,点击下一项继续输入,直到最后一项,键盘收起。
.wxml代码

<view class="container">

  <template name="cellViewTemplat">
    <view class="cellView">
      <view class="cellNameView">{{item.name}}</view>
      <input class="cellInputView" focus="{{item.focus}}" id="{{item.inputId}}" confirm-type='{{item.inputId===1008?"done":"next"}}'  bindconfirm="confirmBtnClicked" bindfocus="inputFocus" bindblur="inputblur" />
    </view>
  </template>

  <view class="infoView">
    <block wx:for="{{list1}}" for-key="key">
      <template is="cellViewTemplat" data="{{item}}"></template>
    </block>

  </view>
  <view class="infoView">
    <block wx:for="{{list2}}" for-key="key">
      <template is="cellViewTemplat" data="{{item}}"></template>
    </block>
  </view>
  <button class="confirmButton">确认保存</button>
</view>

.wxss代码

.container {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.infoView {
  padding: 10rpx;
  margin: 20rpx;
  width: 90%;
  
  border: 1rpx lightgray solid;
  border-radius: 8rpx;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cellView {
  margin: 10rpx;
  padding: 10rpx;
  width: 100%;
  border-bottom: 1rpx lightgray dashed;
  /*display: flex;
  flex-direction: row;
  align-items: center;*/
  
}

.cellNameView {
  float: left;
  /*width: 30%;*/
  /*text-align: center;*/
  /*background-color: greenyellow;*/
}

.cellInputView {
  float: right;
  /*width: 70%;*/
  text-align: right;
  /*background-color: red;*/
}
.confirmButton {
  color: white;
  background-color: limegreen;
}

.js代码

Page({

  /**
   * 页面的初始数据
   */
  data: {
    list1: [
      {
        name: '真实姓名',
        focus: false,
        content:"",
        inputId: 1000
      },
      {
        name: '职业',
        focus: false,
        content: "",
        inputId: 1001
      },
      {
        name: '手机',
        focus: false,
        content: "",
        inputId: 1002
      },
      {
        name: '邮箱',
        focus: false,
        content: "",
        inputId: 1003
      }
    ],
    list2: [
      {
        name: '爱车品牌',
        focus: false,
        content: "",
        inputId: 1004
      },
      {
        name: '爱车型号',
        focus: false,
        content: "",
        inputId: 1005
      },
      {
        name: '发动机排量',
        focus: false,
        content: "",
        inputId: 1006
      },
      {
        name: '生产年份',
        focus: false,
        content: "",
        inputId: 1007
      },
      {
        name: '车牌号',
        focus: false,
        content: "",
        inputId: 1008
      }
    ],
  },
  /**
   * confirmButtonCtrl
   */
  confirmBtnClicked: function (event) {
    console.log(event)
    console.log(event.detail)
    var that = this
    console.log(that.data.list1)
    console.log(that.data.list2)

    var tempArray1 = that.data.list1
    var tempArray2 = that.data.list2
    var i = event.target.id - 1000
    console.log("confirm-" + i)
    if (i < tempArray1.length) {
      //list1
      tempArray1[i].focus = false
      tempArray1[i].content = event.detail.value
      if (i !== tempArray1.length - 1) {
        tempArray1[i + 1].focus = true
      } else {
        tempArray2[0].focus = true
      }
    } else if (i < (tempArray1.length + tempArray2.length)) {
      //list2
      var j = i - tempArray1.length
      tempArray2[j].focus = false
      tempArray2[j].content = event.detail.value
      if (j !== tempArray2.length - 1) {
        tempArray2[j + 1].focus = true
      } else {
        console.log("all lose focus!")
      }
    }
    that.setData({
      list1: tempArray1,
      list2: tempArray2
    })
    if (event.target.id === "1008") {
      console.log("print data.list1:")
      console.log(this.data.list1)
      console.log("print data.list2:")
      console.log(this.data.list2)
    }
  },
  inputFocus: function (event) {
    // var tempArray1 = this.data.list1
    // var tempArray2 = this.data.list2
    // var i = event.target.id - 1000
    // console.log("inputFocus-" + i)
    // if (i < tempArray1.length) {
    //   //list1
    //   if (tempArray1[i].focus) {
    //     return
    //   }
    //   tempArray1[i].focus = true
    // } else if (i < (tempArray1.length + tempArray2.length)) {
    //   //list2
    //   if (tempArray2[i - tempArray1.length].focus) {
    //     return
    //   }
    //   tempArray2[i - tempArray1.length].focus = true
    // }

    // this.setData({
    //   list1: tempArray1,
    //   list2: tempArray2
    // })

  },
  inputblur: function (event) {
    // var tempArray1 = this.data.list1
    // var tempArray2 = this.data.list2
    // var i = event.target.id - 1000
    // console.log("inputblur-" + i)
    // if (i < tempArray1.length) {
    //   //list1
    //   if (!tempArray1[i].focus) {
    //     return
    //   }
    //   tempArray1[i].focus = false
    //   if (i !== tempArray1.length - 1) {
    //     tempArray1[i + 1].focus = true
    //   } else {
    //     tempArray2[0].focus = true
    //   }

    // } else if (i < (tempArray1.length + tempArray2.length)) {
    //   //list2
    //   var j = i - tempArray1.length
    //   if (!tempArray2[j].focus) {
    //     return
    //   }
    //   tempArray2[j].focus = false
    //   if (j !== tempArray2.length - 1) {
    //     tempArray2[j + 1].focus = true
    //   } else {
    //     console.log("all lose focus!")
    //   }
    // }
    // this.setData({
    //   list1: tempArray1,
    //   list2: tempArray2
    // })
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {

  },

  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {

  },

  /**
   * 生命周期函数--监听页面隐藏
   */
  onHide: function () {

  },

  /**
   * 生命周期函数--监听页面卸载
   */
  onUnload: function () {

  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh: function () {

  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function () {

  },

  /**
   * 用户点击右上角分享
   */
  onShareAppMessage: function () {

  }
})

原谅我直接把所有代码都考过来了,哈哈,主要是我不想删,最开始考虑的是直接点击confirm键就下一个input聚焦,但是发现微信小程序这个只能让键盘一弹一收一弹一收,所以我还在input的聚焦和失去聚焦函数里尝试过感觉麻烦 不实际,还是在confirmbutton的响应事件里写吧,万一以后键盘不用一弹一收一弹一收了呢,嘿嘿。
这算是我的一个小笔记吧,以后有时间了还会再写的,可能设计很幼稚,也可能你有更好的方法,欢迎大家留言交流,轻点喷,轻点喷。


最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,817评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,329评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,354评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,498评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,600评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,829评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,979评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,722评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,189评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,519评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,654评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,329评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,940评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,762评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,993评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,382评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,543评论 2 349

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,790评论 25 707
  • 第19天·21天美颜瘦身课 每一位都可以通过这张卡片觉察自己: 1、直觉他叫什么名字?胖妮 2、他几岁了?43 3...
    笑嫣不忘初衷阅读 254评论 0 0
  • 梦里几度寻,穿越风雪几程,却不见故人在灯火阑珊处。夜深风竹敲竹韵,万叶千声皆是恨。 梦醒独上高楼,拟把归期托鸿雁,...
    馨雪清菡阅读 1,136评论 19 12
  • 前言 influxdb是目前比较流行的时间序列数据库。 何谓时间序列数据库?什么是时间序列数据库,最简单的定义就是...
    miaoLoveCode阅读 83,847评论 7 50
  • 最后一抹暮色退去了 文/南倚闲坐 最后一抹暮色退去了 桔红霞光 躲进林海云天 风车扇灭日的热情 我目送天边一抺暖意...
    南倚闲坐阅读 164评论 0 0