小程序
小游戏
企业微信
微信支付
扫描小程序码分享
我们是大学院校在线考试的微信小程序,但是偶发的存在学生输入框事件不能不触发,学生答得答案不能被获得,这个问题极其严重,这是在考试啊,考生情绪很激动。
而微信小程序的文档中 没有找到 直接获得微信小程序中 输入框的 值的办法(这居然都没有)。请帮忙。我的电话13701874253 或者提供一个 可以直接沟通的电话。希望能提供速度
5 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
使用 bindinput 没有人遇到过问题。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
获取方法有问题吧,没测试好就使用了?
https://developers.weixin.qq.com/miniprogram/dev/component/input.html
看文档了吗?
写的有问题吧,一般都是e.detail.value获取
<input bindinput="bindKeyInput"/>
Page({
data: {
inputValue: ''
},
bindKeyInput: function (e) {
this.setData({
inputValue: e.detail.value
})
}
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
使用 bindinput 没有人遇到过问题。
获取方法有问题吧,没测试好就使用了?
https://developers.weixin.qq.com/miniprogram/dev/component/input.html
看文档了吗?
<input bindinput="bindKeyInput"/>
Page({
data: {
inputValue: ''
},
bindKeyInput: function (e) {
this.setData({
inputValue: e.detail.value
})
}
})
https://developers.weixin.qq.com/miniprogram/dev/component/input.html