小程序
小游戏
企业微信
微信支付
扫描小程序码分享
小程序textarea如何获取和监听光标位置?
当我点击切换光标选中文本位置后如何获取位置。
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
bindinput 当键盘输入时,触发 input 事件,event.detail = {value, cursor, keyCode},
event.detail.cursor就是光标位置。
或者使用api:wx.getSelectedTextRange(Object object)
在input、textarea等focus之后,获取输入框的光标位置。注意:只有在focus的时候调用此接口才有效。
api链接:https://developers.weixin.qq.com/miniprogram/dev/api/device/keyboard/wx.getSelectedTextRange.html
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
cursor是设置,不能监听啊,不知道你2咋理解的
可以使用文档中的cursor
https://developers.weixin.qq.com/miniprogram/dev/component/textarea.html
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
bindinput 当键盘输入时,触发 input 事件,event.detail = {value, cursor, keyCode},
event.detail.cursor就是光标位置。
或者使用api:wx.getSelectedTextRange(Object object)
在input、textarea等focus之后,获取输入框的光标位置。注意:只有在focus的时候调用此接口才有效。
api链接:https://developers.weixin.qq.com/miniprogram/dev/api/device/keyboard/wx.getSelectedTextRange.html
cursor是设置,不能监听啊,不知道你2咋理解的
可以使用文档中的cursor
https://developers.weixin.qq.com/miniprogram/dev/component/textarea.html