跳转到内容

InputBase API

想要学习更多组件属性和 CSS API,可以查阅 React InputBase 组件的 API 文档。

演示项目

For examples and details on the usage of this React component, visit the component demo pages:

导入

import InputBase from '@mui/material/InputBase';
// 或
import { InputBase } from '@mui/material';
你可以阅读这个关于最小化捆绑包的指南以了解以上二者的差异。

InputBase contains as few styles as possible. It aims to be a simple building block for creating an input. It contains a load of style reset and some state logic.

组件名称

在主题中,名称“MuiInputBase”可用于提供默认属性(props),或者样式覆盖

属性

原生(Native) 组件的属性也是可用的。

名称类型默认值描述
autoCompletestring
This prop helps users to fill forms faster, especially on mobile devices. The name can be confusing, as it's more like an autofill. You can learn more about it following the specification.
autoFocusboolfalse
If true, the input element is focused during the first mount.
classesobject
Override or extend the styles applied to the component. See CSS API below for more details.
color'primary'
| 'secondary'
| 'error'
| 'info'
| 'success'
| 'warning'
| string
The color of the component. It supports both default and custom theme colors, which can be added as shown in the palette customization guide. The prop defaults to the value ('primary') inherited from the parent FormControl component.
components{ Input?: elementType, Root?: elementType }{}
The components used for each slot inside the InputBase. Either a string to use a HTML element or a component.
componentsProps{ input?: object, root?: object }{}
The props used for each slot inside the Input.
defaultValueany
The default input value. Use when the component is not controlled.
disabledboolfalse
If true, the input element is disabled. The prop defaults to the value (false) inherited from the parent FormControl component.
disableInjectingGlobalStylesboolfalse
If true, GlobalStyles for the auto-fill keyframes will not be injected/removed on mount/unmount. Make sure to inject them at the top of your application. This option is intended to help with boosting the initial rendering performance if you are loading a big amount of Input components at once.
endAdornmentnode
End InputAdornment for this component.
errorboolfalse
If true, the input will indicate an error. The prop defaults to the value (false) inherited from the parent FormControl component.
fullWidthboolfalse
If true, the input will take up the full width of its container.
idstring
The id of the input element.
inputComponentelement type'input'
The component used for the input element. Either a string to use a HTML element or a component.
⚠️ Needs to be able to hold a ref.
inputPropsobject{}
Attributes applied to the input element.
inputRefref
Pass a ref to the input element.
margin'dense'
| 'none'
If dense, will adjust vertical spacing. This is normally obtained via context from FormControl. The prop defaults to the value ('none') inherited from the parent FormControl component.
maxRowsnumber
| string
Maximum number of rows to display when multiline option is set to true.
minRowsnumber
| string
Minimum number of rows to display when multiline option is set to true.
multilineboolfalse
If true, a TextareaAutosize element is rendered.
namestring
Name attribute of the input element.
onBlurfunc
Callback fired when the input is blurred.
Notice that the first argument (event) might be undefined.
onChangefunc
Callback fired when the value is changed.

Signature:
function(event: object) => void
event: The event source of the callback. You can pull out the new value by accessing event.target.value (string).
onInvalidfunc
placeholderstring
The short hint displayed in the input before the user enters a value.
readOnlyboolfalse
It prevents the user from changing the value of the field (not from interacting with the field).
requiredboolfalse
If true, the input element is required. The prop defaults to the value (false) inherited from the parent FormControl component.
rowsnumber
| string
Number of rows to display when multiline option is set to true.
size'medium'
| 'small'
| string
The size of the autocomplete.
slotProps{ input?: object, root?: object }{}
slots{ input?: elementType, root?: elementType }{}
startAdornmentnode
Start InputAdornment for this component.
sxArray<func
| object
| bool>
| func
| object
The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details.
typestring'text'
Type of the input element. It should be a valid HTML5 input type.
valueany
The value of the input element, required for a controlled component.

ref 则会被传递到根元素中。

CSS

规则名称全局类名描述
root.MuiInputBase-rootStyles applied to the root element.
formControl.MuiInputBase-formControlStyles applied to the root element if the component is a descendant of FormControl.
focused.Mui-focusedStyles applied to the root element if the component is focused.
disabled.Mui-disabledStyles applied to the root element if disabled={true}.
adornedStart.MuiInputBase-adornedStartStyles applied to the root element if startAdornment is provided.
adornedEnd.MuiInputBase-adornedEndStyles applied to the root element if endAdornment is provided.
error.Mui-errorPseudo-class applied to the root element if error={true}.
sizeSmall.MuiInputBase-sizeSmallStyles applied to the input element if size="small".
multiline.MuiInputBase-multilineStyles applied to the root element if multiline={true}.
colorSecondary.MuiInputBase-colorSecondaryStyles applied to the root element if the color is secondary.
fullWidth.MuiInputBase-fullWidthStyles applied to the root element if fullWidth={true}.
hiddenLabel.MuiInputBase-hiddenLabelStyles applied to the root element if hiddenLabel={true}.
readOnly.MuiInputBase-readOnlyState class applied to the root element if readOnly={true}.
input.MuiInputBase-inputStyles applied to the input element.
inputSizeSmall.MuiInputBase-inputSizeSmallStyles applied to the input element if size="small".
inputMultiline.MuiInputBase-inputMultilineStyles applied to the input element if multiline={true}.
inputTypeSearch.MuiInputBase-inputTypeSearchStyles applied to the input element if type="search".
inputAdornedStart.MuiInputBase-inputAdornedStartStyles applied to the input element if startAdornment is provided.
inputAdornedEnd.MuiInputBase-inputAdornedEndStyles applied to the input element if endAdornment is provided.
inputHiddenLabel.MuiInputBase-inputHiddenLabelStyles applied to the input element if hiddenLabel={true}.

您可以使用组件自定义选项对组件进行个性化: