摘要:
1. 删除 <link rel="stylesheet" type="text/css" href="static/css/bootstrap.min.css"> <meta name="viewport" content="width=640, user-scalable=no, viewport 阅读全文
摘要:
随机颜色 data: { colorList:[] }, getColor(){ wx.request({ url: 'https://www.escook.cn/api/color', method:'GET', data:res//data重命名为res success:({data:res}) 阅读全文
摘要:
<view>content值是{{cont}}</view> <button bindtap="add">+1</button> data: { cont:0 }, // 自增效果 add(){ this.setData({ cont:this.data.cont + 1 }) }, 下拉刷新数字归 阅读全文
摘要:
navigator跳转 open-tab=“switchTab”/open-type=“navigate” <navigator url="/pages/list/list" open-type="navigate">跳转别的页面</navigator> 非tabbar页面 <navigator u 阅读全文
摘要:
"enablePullDownRefresh": true 下拉刷新之后背景颜色 "backgroundColor": "#efefef" 改变小点的颜色 "backgroundTextStyle":"dark", tabBar "tabBar":{ "list":[ { "pagePath": " 阅读全文
摘要:
1.控制代码的显示隐藏 1.wx:if="{{}}"判断是否需要渲染代码 <view wx:if="{{tiaojian 1}}">显示1</view> <view wx:elif="{{tiaojian 2}}">显示2</view> <view wx:else>显示3</view> data: 阅读全文
摘要:
1超出显示滚动条 <scroll-view class="container1" scroll-y> <view>A</view> </scroll-view> 2轮播图 <swiper class="swiper-content" indicator-dots> <swiper-item> <vi 阅读全文
摘要:
1. 数字 \d{n} 2. 数字和字母 [A-Za-z0-9]{n} 常用运算符与表达式 ^ 开始 () 域段 [] 包含,默认是一个字符长度 [^] 不包含,默认是一个字符长度 {n,m} 匹配长度? . 任何单个字符(. 字符点) | 或 \ 转义 $ 结尾 [A-Z] 26个大写字母 [a- 阅读全文
摘要:
遮罩DIV{ pointer-events: none; } 阅读全文