当前位置:   article > 正文

微信小程序之表单组件之slider(滑动选择器)+form(表单)+label(表单组件)详解_下列选项中,用于滑动选择某一个值的组件是( )

下列选项中,用于滑动选择某一个值的组件是( )

一.slider

 

slider 即 滑动选择器。

 

1.属性

 

 

2.代码

 

2.1.WXSS代码

  1. .intro {
  2. margin: 10px;
  3. }

 

2.2.WXML代码

  1. <text class="intro">{{textValue}}</text>
  2. <view class="intro">
  3. <slider bindchange="sliderchange" min="{{minValue}}" max="{{maxValue}}" block-size="20" value="{{showValue}}" show-value/>
  4. </view>

 

2.3.JS代码

  1. Page({
  2. /**
  3. * 页面的初始数据
  4. */
  5. data: {
  6. minValue:'0',
  7. showValue:'30',
  8. maxValue:'100',
  9. textValue: '设置最小/最大值:30'
  10. },
  11. /**
  12. * slider滑动监听事件
  13. */
  14. sliderchange:function(e){
  15. this.setData({
  16. textValue: '设置最小/最大值:'+e.detail.value
  17. })
  18. console.log(`当前值`, e.detail.value)
  19. }
  20. })

 

 

3.效果

 

 

 

 

 

 

二.form

 

form 即 表单,将组件内的用户输入的<switch/> <input/> <checkbox/> <slider/> <radio/> <picker/>提交。

当点击 <form/>表单中 formType 为 submit 的<button/> 组件时,会将表单组件中的 value 值进行提交,需要在表单组件中加上 name 来作为 key。

 

1.属性

 

 

2.代码

 

2.1.WXML代码

  1. <form bindsubmit="formSubmit" bindreset="formReset">
  2. <view class="section section_gap">
  3. <view class="section__title">switch</view>
  4. <switch name="switch"/>
  5. </view>
  6. <view class="section section_gap">
  7. <view class="section__title">slider</view>
  8. <slider name="slider" show-value ></slider>
  9. </view>
  10. <view class="section">
  11. <view class="section__title">input</view>
  12. <input name="input" placeholder="please input here" />
  13. </view>
  14. <view class="section section_gap">
  15. <view class="section__title">radio</view>
  16. <radio-group name="radio-group">
  17. <label><radio value="radio1"/>radio1</label>
  18. <label><radio value="radio2"/>radio2</label>
  19. </radio-group>
  20. </view>
  21. <view class="section section_gap">
  22. <view class="section__title">checkbox</view>
  23. <checkbox-group name="checkbox">
  24. <label><checkbox value="checkbox1"/>checkbox1</label>
  25. <label><checkbox value="checkbox2"/>checkbox2</label>
  26. </checkbox-group>
  27. </view>
  28. <view class="btn-area">
  29. <button type='primary' formType="submit">提交</button>
  30. <button type='warn' formType="reset">重置</button>
  31. </view>
  32. </form>

 

2.2.JS代码

  1. Page({
  2. formSubmit: function (e) {
  3. console.log('form发生了submit事件,携带数据为:', e.detail.value)
  4. },
  5. formReset: function () {
  6. console.log('form发生了reset事件')
  7. }
  8. })

 

3.效果

 

 

 

 

 

 

 

三.label

 

label 即 用来改进表单组件的可用性,使用for属性找到对应的id,或者将控件放在该标签下,当点击时,就会触发对应的控件。

for优先级高于内部控件,内部有多个控件的时候默认触发第一个控件。

目前可以绑定的控件有:<button/>, <checkbox/>, <radio/>, <switch/>。

 

1.属性

 

 

2.代码

https://developers.weixin.qq.com/miniprogram/dev/component/label.html

 

 

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/159398
推荐阅读
  

闽ICP备14008679号