- 小程序没有取消默认事件得方法,希望能加入
- 需求的场景描述(希望解决的问题) 希望有阻止默认事件得方法,因为input聚焦会获得键盘,但是失焦会收起键盘,有时候制作一个漂亮得输入框,旁边难免有一些元素做装饰,但我不希望点击到旁边得元素就马上早上input失焦,键盘被反复拉起收起,太麻烦了。JS就有这样得一个方法,可以阻止默认事件得触发。3Q - 希望提供的能力 event.preventDefault()方法
2018-05-16 - Map组件marker自定义气泡会被其他marker遮挡如何解决?
问题:小程序,调用Map组件,marker 上的自定义气泡( customCallout )会被其他marker遮挡。 尝试再.customCallout设置z-index,无法解决,求解决办法,谢谢。 WXML: <map id="myMap" latitude="{{currentLatitude}}" longitude="{{currentLongitude}}" show-location="true" circles="{{circles}}" enable-satellite="{{satellite}}" show-compass="true" enable-overlooking="true" markers="{{scale>=17?markers:false}}" bindregionchange="bindRegionChanged" bindmarkertap="bindMarkerTap"> <cover-view slot="callout"> <block wx:for="{{markers}}" wx:key="index"> <cover-view class="customCallout" marker-id="{{index}}"> <cover-view class="content"> 这个是自定义气泡{{item.obdName}} </cover-view> </cover-view> </block> </cover-view> </map> WXSS: .customCallout { width: 350rpx; height: 200rpx; background-color: rgba(255, 255, 255, 0.9); box-shadow: 0 -1rpx 6rpx rgba(0, 0, 0, 0.1); border-radius: 10rpx; } [图片]
2021-03-15