遇到同样的问题,大佬们都解决了吗?我这边模拟发现只有用户点击事件后,才可实现播放! JQ模拟的CLICK事件无效!
android 7.0.8 开始公众号页面无法自动播放 audio了?7.0.8 之前,android 微信允许监听 WeixinJSBridgeReady 事件,来调用 js 播放audio。 7.0.8 版本此方式失效,目前测试来看只能通过监听 click (touchstart, touchend 都不行)事件来播放音乐了。 请问有其他方案么? ------------------------------------------- 11 月 6 日,官方消息:微信会重新开放自动播放,需要一天左右才能覆盖全量用户。大家可以自行测试,看看自己的设备是否恢复正常。
2019-11-04测试机型 华为荣耀6X
textarea在页面底部时,调起键盘后textarea完全被遮挡!textarea官方实例,修改 <view class="page-section" >为<view class="page-section" style='margin-top:800px;'>后,textarea处于页面底部,textarea获取焦点激活键盘,键盘会把整个textarea遮挡,无法看见输入的内容。 本人手机华为荣耀,请问有解码? <view class="page-body"> <view class="page-section" style='margin-top:800px;'> <view class="page-section-title">输入区域高度自适应,不会出现滚动条</view> <view class="textarea-wrp"> <textarea bindblur="bindTextAreaBlur" auto-height /> </view> </view> <view class="page-section"> <view class="page-section-title">这是一个可以自动聚焦的textarea</view> <view class="textarea-wrp"> <textarea auto-focus="true" style="height: 3em" /> </view> </view> </view>
2018-06-08遇到同样问题,textarea在页面底部时,真机(华为荣耀)调起键盘后,会把整个textarea遮挡住,请问有解吗?
安卓,textarea被键盘完全遮挡以下是官方示列中的代码,给下层加了个高让其在页面底部; cursor-spacing=的数值等于800左右才能看见输入框,但苹果就挂了 <view class="container"> <template is="head" data="{{title: 'textarea'}}"/> <view class="page-body"> <view class="page-section"> <view class="page-section-title">输入区域高度自适应,不会出现滚动条</view> <view class="textarea-wrp"> <textarea bindblur="bindTextAreaBlur" auto-height /> </view> </view> <view class="page-section" style='margin-top:400px;'> <view class="page-section-title">这是一个可以自动聚焦的textarea</view> <view class="textarea-wrp"> <textarea style="height: 3em" cursor-spacing='20' /> </view> </view> </view> <template is="foot" /> </view> 查看官方提问后,加入: wx.createSelectorQuery().select('#container').boundingClientRect((rect) => { // 使页面滚动到底部 wx.pageScrollTo({ scrollTop: rect.bottom,//rect.height duration: 10//设置滚动时间 }) //功能代码 }).exec() 苹果有效,安卓无效
2018-06-08