欢迎来到258分享网,纯净的网络源码分享基地!

258资源分享网

全部作品
全部作品
网站源码
微信源码
素材特效
源码插件
视频教程
建站学院
热门搜索: 织梦  农业种植  农业  安全设置  官方
258资源分享 > 建站学院 > 微信开发 > 微信小程序 动态绑定事件 且通过事件修改样式

推荐下载

HTML5响应式自适应网咯设计

2020-05-12   浏览:789

HTML5自适应律师工作室类网

2020-04-04   浏览:654

高端HTML5响应式企业通用网

2020-05-06   浏览:560

html5响应式外贸网站英文版

2020-05-08   浏览:545

HTML5影视传媒文化公司类网

2020-05-12   浏览:543

微信小程序 动态绑定事件 且通过事件修改样式

发布时间:2020-11-29  

<scroll-view class="reportTypeScroll" scroll-x="true" scroll-left="{{toLeftNum}}">

<block wx:for-items="{{reportTypeList}}" wx:key="{{index}}">

<text type="primary" style="width:{{itemWidth}}rpx;" bindtap="bind{{item.id}}" data-typeid="{{item.id}}" class="{{currentId==item.id?'clickSel':'removeSel'}}">{{item.name}}</text>

</block>

</scroll-view>

//js

 

var reportTypeList = [

{ name: "日报1", id: "1" },

{ name: "目录2", id: "2" },

{ name: "季报3", id: "3" },

{ name: "月报4", id: "4" },

{ name: "日报5", id: "5" },

{ name: "目录6", id: "6" },

{ name: "季报7", id: "7" },

{ name: "月报8", id: "8" },

{ name: "日报9", id: "9" },

{ name: "目录10", id: "10" },

{ name: "季报11", id: "11" },

{ name: "月报12", id: "12" }]

 

var pageObject = {

data: {

reportTypeList: reportTypeList,

num: 0,

toLeftNum: 0,

itemWidth: 150

}

}

 

for (var i = 0; i < reportTypeList.length; i++) {

(function (item) {

pageObject['bind' + item.id] = function (e) {

var id = parseInt(e.currentTarget.dataset.typeid)

 

this.setData({

currentId: id

})

}

})(reportTypeList[i])

}

 

Page(pageObject)

//wxss

 

/**index.wxss**/

 

.reportTypeScroll {

margin: 40px 0px 20px 0px;

white-space: nowrap;

display: flex;

}

 

.clickSel {

color: red;

}

 

.removeSel {

color: black;

}

 

text {

height: 150rpx;

display: inline-block;