现在还是有这个问题,多个 input 并列且都有 blur、focus 事件时,点击第一个 input,然后再点击第二个 input,会直接触发第二个 input 的 blur 事件。
input自动触发blur<input placeholder="请输入个人账号">input> <input placeholder="请输入密码" password >input> 这样的情况下,在ide下没出错,在真机测试的时候,会自动触发你第二个点击的input的onblur事件,不知道为啥?
2023-03-20文档里面确实有些地方写得不是很清晰,让人看得有点懵逼。
文档说明更清晰建议https://developers.weixin.qq.com/miniprogram/dev/reference/api/Component.html 注意:在 [代码]properties[代码] 定义段中,属性名采用驼峰写法([代码]propertyName[代码]);在 [代码]wxml[代码] 中,指定属性值时则对应使用连字符写法([代码]component-tag-name property-name="attr value"[代码]),应用于数据绑定时采用驼峰写法([代码]attr=""[代码] 最后一个attr="" 应该是propertyName="attr value";
2020-08-10目前仍然有这个问题,蛋疼。
安卓兼容问题,scroll-view上拉导致input输入框上移代码片段:https://developers.weixin.qq.com/s/9SbNDrmp77ha scroll-view没有上拉时是正常的 [图片] 上拉一部分时,input的输入位置上移的,但是实际input好像没有上移,input的灰色背景没有上来 [图片] 再往上拉,input输入位置又继续往上移了 [图片] ios系统没有出现这个问题...
2020-07-23经过测试,目前粗体在真机仍然不生效。目测数字生效了,汉字还是不生效。
canvas 真机上设置文字“粗体”无效使用 ctx.font = 'bold 18px arial,sans-serif' 在开发者工具上有效,文字为粗体。 但是在真机 ios 上测试,没有粗体,只有字体大小生效。
2020-05-09现在这个问题确实存在,解决办法貌似只能把代码中的 finally 全改了。 而且最蛋疼的是,即使不用 plugins,根据实测,小程序 finally 会在 iPhone 上报错。
工具报错modification of global variable?modification of global variable "Promise.prototype.finally" is not allowed when using plugins at app.json. 在app.js里面写了Promise.prototype.finally这个方法,然后又引入了直播插件plugins: { "live-player-plugin": { "version": "1.0.7", "provider": "wx2b03c6e691cd7370" } } 然后开发工具报这个错误了modification of global variable "Promise.prototype.finally" is not allowed when using plugins at app.json.
2020-04-29