收藏
回答

小程序在ios系统上弹出数字键盘,点击输入数字后input显示中文问题

设备:iPhone 13 promax

系统:26.3

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

2 个回答

  • 把猫耳朵翻过来
    把猫耳朵翻过来
    04-10
           <input 
              class="input-field" 
              id="examScoreEstimateMaxInput"
              placeholder="最高分" 
              type="number" 
              maxlength="3" 
              value="{{examScoreEstimateMax}}" 
              bindfocus="_handleInputFocus"
              bindblur="_handleInputBlur"
              adjust-position="{{false}}"
              bindinput="_handleInputExamScoreEstimateMax" 
              focus="{{focusedInputId === 'examScoreEstimateMaxInput' && isEdit}}"
            
              disabled="{{!isEdit}}" 
            >
              <keyboard-accessory>
                <cover-view class="floating-button-container" catch:tap="_handleCatchTap">
                  <cover-view class="floating-btn" bindtap="_handleNextInputFocus">下一个</cover-view>
                </cover-view>
              </keyboard-accessory>
            </input>
    
    04-10
    有用
    回复
  • 智能回答 智能回答 本次回答由AI生成
    04-10
    有用
    回复 1
    • 把猫耳朵翻过来
      把猫耳朵翻过来
      04-10
      <input
                class="input-field"
                id="examScoreEstimateMaxInput"
                placeholder="最高分"
                type="number"
                maxlength="3"
                value="{{examScoreEstimateMax}}"
                bindfocus="_handleInputFocus"
                bindblur="_handleInputBlur"
                adjust-position="{{false}}"
                bindinput="_handleInputExamScoreEstimateMax"
                focus="{{focusedInputId === 'examScoreEstimateMaxInput' && isEdit}}"
                disabled="{{!isEdit}}"
              >
                <keyboard-accessory>
                  <cover-view class="floating-button-container" catch:tap="_handleCatchTap">
                    <cover-view class="floating-btn" bindtap="_handleNextInputFocus">下一个</cover-view>
                  </cover-view>
                </keyboard-accessory>
              </input>
      04-10
      回复
登录 后发表内容