- input光标
代码如下: <input bindinput="modalInput" cursor-spacing="100" name="" maxlength="15" placeholder="" value=""/> 在输入框输入文字,假设先输入5个字,我再回去在第2个字前添加一个字,输入完成后光标会自动跳到最后,安卓手机没出现此问题,ios有问题(手机型号:iPhone 7 Plus)
2018-01-18 - 使用modal组件怎样修改确认按钮的默认颜色(绿色)
代码如下: <modal hidden="" title="" confirm-text="确定" bindconfirm="confirmModel" cancel-text="取消" bindcancel="cancelModel"></modal>
2018-01-18 - 微信小程序横屏展示页面
微信小程序现在支持横屏展示页面吗?如果支持,怎样写呢?
2017-12-22 - ios9 margin不生效(微信小程序)
js: wx.getSystemInfo({ success: function(res){ that.setData({ photosize:res.windowWidth*0.28, photomleft:res.windowWidth*0.026, }) } }); 之后就在html页面设置margin,此时navigator已经设置成display:inline-block; <navigator url="" style="width: {{photosize}}px;height:{{photosize}}px;margin:0 {{photomleft}}px {{photobottom}}px {{photomleft}}px;"> {{item.name}} navigator> 问题:安卓以及ios10样式显示正确,ios9 设置的margin不生效,求大神解决,谢谢啦!!!
2017-09-07 - setData
报错setData accepts an object rather than some String是什么原因呢?
2017-09-07 - canvas
微信小程序canvas画一个png图片之后,怎样在图片上面画一层说明文字呢,现在无论怎样都会覆盖
2017-08-29