收藏
回答

有关在自定义组件中添加 input 标签

<view class="recipient-form-item">


  <label
    class="{{(value !== '' || focus)  ? 'narrow' : '' }}"
  >
    {{ label }}

  </label>


  <input
    type="text"
    value="{{ value }}"
    name="{{ name }}"
    bindinput="onInput"
    bindfocus="bindFocus"
    bindblur="bindBlur"

  />


</view>

在自定义组件中添加 input 标签无法使用自带 form 方法获取该 input 组件的值

求解

回答关注问题邀请回答
收藏

2 个回答

登录 后发表内容