- H5微信分享,在开发工具正常,在真机环境不行?
在微信开发工具中是可以进行分享的,标题描述都是正确的,点击分享到朋友到朋友圈图片也是展示的,但是在真机上是不可以分享的。 [图片]
07-01 - h5 跳转小程序,从其他项目location.href进入本活动无法跳转?
h5跳转小程序,如果直接访问这个页面是可以的,如果是从其他项目跳转到本项目就无法跳转小程序,如果刷新下页面又可以跳转小程序了
06-21 - h5 开发跳转小程序,wx-open-launch-weapp宽高 0?
[图片] [图片] [图片]
02-02 - h5开发,input框在聚焦的时候有的机型(这边测试苹果11)出现红色边框?
在开发公众号H5的时候出现,输入框获取焦点了,就出现边框,目前在苹果11出现,其他设备正常,这个怎么调,跪求大佬指点! [图片] html <div> <span>手机号:</span> <input type="number" pattern="\d*" placeholder="${phonepla}" class="inputPhone" oninput="if(value.length > 11)value = value.slice(0, 11)"> </div> <p class="FromErr FromErrPhone">失败</p> <div class="yanzhengma"> <div> <span>验证码:</span> <input type="number" pattern="\d*" placeholder="请输入验证码" class="inputCode" oninput="if(value.length > 6)value = value.slice(0, 6)"> </div> <div class="getCode">发送验证码</div> </div> <p class="FromErr FromErrCode">失败</p>` css input:active, input:focus { outline: 0; } input{ user-select: auto; -webkit-user-select: auto; /*webkit浏览器*/ } .inputPhone, .inputCode { display: block; border: none; background: none; width: 240px; height: 40px; line-height: 40px; background-color: #efefef; border-radius: 20px; text-indent: 16px; font-size: 20px; } .yanzhengma { display: flex; justify-content: space-between; align-items: center; width: 100%; } .getCode { width: 105px; text-align: center; font-size: 20px; height: 40px; color: #f8320e; border: 0 !important; line-height: 40px; -webkit-user-select: auto !important; outline: none !important; -webkit-appearance: none !important; } .inputPhone { width: 260px; } .inputCode { width: 155px; } .FromErr { width: 100%; height: 26px; text-align: left; font-size: 20px; color: #f8320e; opacity: 0; line-height: 26px; }
2023-12-13