当前位置:   article > 正文

微信小程序之表单组件之input(输入框)+textarea(多行输入框)+radio(单选项目)详解_小程序input radio

小程序input radio

一.input

 

input 即 输入框。该组件是原生组件,使用时请注意相关限制。

 

1.属性

 

type 有效值

 

confirm-type 有效值

 

2.代码

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

 

 

 

 

 

二.textarea

textarea 即 多行输入框。

 

1.属性

 

 

2.代码

 

2.1.WXSS代码

  1. textarea {
  2. width: 700rpx;
  3. height: 500rpx;
  4. margin-left: 10rpx;
  5. margin-right: 10rpx;
  6. margin-top: 10rpx;
  7. }
  8. .textarea-bg {
  9. background-color: #999;
  10. padding: 10rpx;
  11. font-size: 32rpx;
  12. }
  13. .title-bg {
  14. font-size: 32rpx;
  15. margin-left: 10rpx;
  16. margin-right: 10rpx;
  17. margin-top: 10rpx;
  18. color: #43c729;
  19. }

 

 

2.2.WXML代码

  1. <view class='father_view'>
  2. <view class='son_view'>
  3. <view class="title-bg">textarea演示</view>
  4. <textarea class="textarea-bg" placeholder="请输入内容" bindblur="getDataBindTap" auto-height />
  5. </view>
  6. </view>

 

2.3.JS代码

  1. Page({
  2. /**
  3. * 页面的初始数据
  4. */
  5. data: {
  6. },
  7. /**
  8. * 获取内容
  9. */
  10. getDataBindTap:function(e){
  11. var result = e.detail.value;
  12. console.log(result)
  13. },
  14. })

 

 

 

3.效果

 

 

 

 

 

 

三.radio

 

radio-group 即 单项选择器,内部由多个<radio/>组成。

 

1.属性

 

radio 即 单选项目。

 

2.属性

 

3.代码

 

3.1.WXSS代码

  1. .radio-group {
  2. border-bottom: 1px solid #ddd;
  3. }
  4. .radio {
  5. display: block;
  6. border-top: 1px solid #ddd;
  7. padding: 5px;
  8. }

 

3.2.WXML代码

  1. <view class="page">
  2. <view class="page__hd">
  3. <text class="page__title">radio单选框</text>
  4. </view>
  5. <view class="page__bd">
  6. <view class="section section_gap">
  7. <radio-group class="radio-group" bindchange="radioChange">
  8. <radio class="radio" wx:for-items="{{items}}" wx:key="name" value="{{item.name}}" checked="{{item.checked}}">
  9. <text>{{item.value}}</text>
  10. </radio>
  11. </radio-group>
  12. </view>
  13. </view>
  14. </view>

 

3.3.JS代码

  1. Page({
  2. data: {
  3. items: [
  4. { name: 'USA', value: '美国' },
  5. { name: 'CHN', value: '中国', checked: 'true' },
  6. { name: 'BRA', value: '巴西' },
  7. { name: 'JPN', value: '日本' },
  8. { name: 'ENG', value: '英国' },
  9. { name: 'FRA', value: '法国' },
  10. ]
  11. },
  12. radioChange: function (e) {
  13. console.log('radio发生change事件,携带value值为:', e.detail.value)
  14. }
  15. })

 

 

4.效果

 

 

 

 

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号