摘要:
wx.js /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { let menuButtonObject = wx.getMenuButtonBoundingClientRect(); wx.getSystemInfo({ success: (r 阅读全文
摘要:
给每个子元素添加 flex-shrink: 0; 父元素overflow:auto;实现子元素不压缩,超出宽度展示滚动条 阅读全文
摘要:
父组件内 wx.ml <popup_window isAlert="{{isAlert}}" bind:changwindow="handleTap"></popup_window> 子组件内wx.ml <!-- 弹出框 --> <view class="cover" wx:if="{{isAler 阅读全文
摘要:
index.wxml <view class="c_item" bindtap="getPublishDate"> <label for="name">截止时间</label> <input type="text" id="name" bin disabled="{{true}}" value="{ 阅读全文
摘要:
wx.ml <view class="single_word {{item.show?'word_active':'word_noactive'}}" wx:for="{{arr}}" wx:key="{{this}}" data-index="{{index}}" bindtap="wordSho 阅读全文
摘要:
api:wx.setClipboardData({ data:Data, success(res){ console.log(res) }, fail(res){ console.log(res) } }) wx.ml <view catchtap='copywxtap' data-password 阅读全文
摘要:
H5 PC <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" conte 阅读全文
摘要:
问题 十三课正常显示 十四颗 就会自动换行 修改后 直接在JS中拿到数据替换到 ;换成\t 就可以解决了 for (let i = 0; i < data.length; i++) { data[i].name=data[i].name.replace(/ /ig,'\t') } 阅读全文
摘要:
要在js中获取checkbox选择值 必须在外面包裹一个checkbox-group wxml 代码 <scroll-view class="s_view" scroll-y="true"> <block wx:for="{{list}}" wx:key="{{this}}"> <view clas 阅读全文
摘要:
主要2点 1 scroll-view 设置 scroll-x="true" style="width:100%" white-space:nowrap; 2 子元素 设置 display:inline-block; index.wxml <scroll-view scroll-x="true" cl 阅读全文