Skip to main content
Version: 3.x

Input

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

支持情况:

参考文档

类型

ComponentType<InputProps>

示例代码

class App extends Component {

render () {
return (
<View className='example-body'>
<Text>可以自动聚焦的 input</Text>
<Input type='text' placeholder='将会获取焦点' focus/>
<Text>控制最大输入长度的 input</Text>
<Input type='text' placeholder='最大输入长度为 10' maxlength='10'/>
<Text>数字输入的 input</Text>
<Input type='number' placeholder='这是一个数字输入框'/>
<Text>密码输入的 input</Text>
<Input type='password' password placeholder='这是一个密码输入框'/>
<Text>带小数点的 input</Text>
<Input type='digit' placeholder='带小数点的数字键盘'/>
<Text>身份证输入的 input</Text>
<Input type='idcard' placeholder='身份证输入键盘'/>
<Text>控制占位符颜色的 input</Text>
<Input type='text' placeholder='占位符字体是红色的' placeholderStyle='color:red'/>
</View>
)
}
}

InputProps

参数类型默认值必填说明
valuestring输入框的初始内容
type"number" or "text" or "idcard" or "digit" or "safe-password" or "nickname""text"input 的类型
passwordboolean是否是密码类型
placeholderstring输入框为空时占位符
placeholderStylestring指定 placeholder 的样式
placeholderClassstring"input-placeholder"指定 placeholder 的样式类
disabledboolean是否禁用
maxlengthnumber140最大输入长度,设置为 -1 的时候不限制最大长度
cursorSpacingnumber0指定光标与键盘的距离,单位 px 。取 input 距离底部的距离和 cursor-spacing 指定的距离的最小值作为光标与键盘的距离
autoFocusbooleanfalse(即将废弃,请直接使用 focus )自动聚焦,拉起键盘
focusboolean获取焦点
confirmType"send" or "search" or "next" or "go" or "done"done设置键盘右下角按钮的文字
confirmHoldbooleanfalse点击键盘右下角按钮时是否保持键盘不收起
cursornumber指定focus时的光标位置
selectionStartnumber-1光标起始位置,自动聚集时有效,需与selection-end搭配使用
selectionEndnumber-1光标结束位置,自动聚集时有效,需与selection-start搭配使用
adjustPositionbooleanfalse键盘弹起时,是否自动上推页面
holdKeyboardbooleanfalsefocus 时,点击页面的时候不收起键盘
alwaysEmbedbooleanfalse强制 input 处于同层状态,默认 focus 时 input 会切到非同层状态 (仅在 iOS 下生效)
safePasswordCertPathstring安全键盘加密公钥的路径,只支持包内路径
safePasswordLengthnumber安全键盘输入密码长度
safePasswordTimeStampnumber安全键盘加密时间戳
safePasswordNoncestring安全键盘加密盐值
safePasswordSaltstring安全键盘计算hash盐值,若指定custom-hash 则无效
safePasswordCustomHashstring安全键盘计算hash的算法表达式,如 md5(sha1('foo' + sha256(sm3(password + 'bar'))))
randomNumberbooleanfalse当 type 为 number, digit, idcard 数字键盘是否随机排列
controlledbooleanfalse是否为受控组件
onInputCommonEventFunction<inputEventDetail>当键盘输入时,触发input事件,event.detail = {value, cursor, keyCode},处理函数可以直接 return 一个字符串,将替换输入框的内容。
onFocusCommonEventFunction<inputForceEventDetail>输入框聚焦时触发,event.detail = { value, height },height 为键盘高度
onBlurCommonEventFunction<inputValueEventDetail>输入框失去焦点时触发

event.detail = {value: value}
onConfirmCommonEventFunction<inputValueEventDetail>点击完成按钮时触发

event.detail = {value: value}
onKeyboardHeightChangeCommonEventFunction<onKeyboardHeightChangeEventDetail>键盘高度发生变化的时候触发此事件

event.detail = {height: height, duration: duration}
nativePropsRecord<string, unknown>用于透传 WebComponents 上的属性到内部 H5 标签上

API 支持度

API微信小程序支付宝小程序H5React Native
InputProps.value✔️✔️✔️
InputProps.type✔️✔️✔️(部分支持)
InputProps.password✔️✔️✔️
InputProps.placeholder✔️✔️✔️
InputProps.placeholderStyle✔️
InputProps.placeholderClass✔️
InputProps.disabled✔️✔️✔️
InputProps.maxlength✔️✔️✔️
InputProps.cursorSpacing✔️
InputProps.autoFocus✔️
InputProps.focus✔️✔️✔️
InputProps.confirmType✔️✔️
InputProps.confirmHold✔️
InputProps.cursor✔️✔️
InputProps.selectionStart✔️✔️
InputProps.selectionEnd✔️✔️
InputProps.adjustPosition✔️
InputProps.holdKeyboard✔️
InputProps.alwaysEmbed✔️
InputProps.safePasswordCertPath✔️
InputProps.safePasswordLength✔️
InputProps.safePasswordTimeStamp✔️
InputProps.safePasswordNonce✔️
InputProps.safePasswordSalt✔️
InputProps.safePasswordCustomHash✔️
InputProps.randomNumber✔️
InputProps.controlled✔️
InputProps.onInput✔️✔️✔️
InputProps.onFocus✔️✔️✔️
InputProps.onBlur✔️✔️✔️
InputProps.onConfirm✔️(借用Form 组件onSubmit事件来替代)✔️
InputProps.onKeyboardHeightChange✔️
InputProps.nativeProps✔️

inputEventDetail

注意:React-Native 端 inputEventDetail 仅实现参数 value,若需实时获取光标位置则可通过 onSelectionChange 实现。

参数类型说明
valuestring输入值
cursornumber光标位置
keyCodenumber键值

inputForceEventDetail

参数类型说明
valuestring输入值
heightnumber键盘高度

inputValueEventDetail

参数类型说明
valuestring输入值

onKeyboardHeightChangeEventDetail

参数类型说明
heightnumber键盘高度
durationnumber持续时间