美文网首页
tag 单选标签效果

tag 单选标签效果

作者: 追逐繁星的阿忠 | 来源:发表于2021-04-29 18:02 被阅读0次

    2021-04-29

    [微信小程序开发笔记(九)--单选标签效果]

    image.png

    1.wxml:

    <block wx:for='{{itemList}}' wx:key='{{key}}'>
        <view class="{{index==isChoice?'_on':''}}" bindtap='itemChoice' data-index="{{index}}"><text>{{item.name}}</text></view>
    </block>
    
    

    2.wxss:

    ._on {
      color: #1DB1CF;
      border: 1rpx solid #1DB1CF;
    }
    

    3.wxjs:

    Page({
      data: {
        isChoice: '0', //设置默认选中
        itemList: [{
            id: 1,
            name: '北京',
          },
          {
            id: 2,
            name: '上海',
          },
          {
            id: 3,
            name: '广州',
          },
          {
            id: 4,
            name: '杭州',
          },
        ]
      },
    
      itemChoice(e) {
        let index = e.currentTarget.dataset.index;
        console.log('您选择了index', index)
        this.setData({
          isChoice: index,
        })
      },
    
    })
    

    相关文章

      网友评论

          本文标题:tag 单选标签效果

          本文链接:https://www.haomeiwen.com/subject/jqbwrltx.html