如何在 Material UI Autocomplete 中为清除按钮图标添加函数?
在本文中,我们将为 Material UI Autocomplete 的清除按钮添加一个额外的函数。引用代码中的清除按钮,然后在其上添加单击事件侦听器。
创建 React 应用程序并安装模块:
第 1 步:使用以下命令创建一个 React 应用程序。
npx create-react-app foldername
步骤2:创建项目文件夹后,即文件夹名称,使用以下命令移动到它:
cd foldername
第 3 步:安装所需模块
npm install @material-ui/core
npm install @material-ui/lab
项目结构:
示例:现在在App.js文件中写下以下代码。在这里,App 是我们编写代码的默认组件。
App.js
import React,{ Component } from 'react';
import TextField from "@material-ui/core/TextField";
import Autocomplete from "@material-ui/lab/Autocomplete";
class App extends Component {
constructor(props) {
super(props);
this.state = {
list: [
{ title: "Title 1"},
{ title: "Title 2"},
{ title: "Title 3"},
{ title: "Title 4"},
]
}
}
componentDidMount(){
// Take the Reference of Close Button
const close = document.getElementsByClassName(
"MuiAutocomplete-clearIndicator"
)[0];
// Add a Click Event Listener to the button
close.addEventListener("click", () => {
alert("Add your Own Functionality Here...");
});
}
render() {
return (
option.title}
style={{ width: 300 }}
renderInput={(params) => (
)}
/>
);
}
}
export default App;
运行应用程序的步骤:从项目的根目录使用以下命令运行应用程序:
npm start
输出:现在打开浏览器并转到http://localhost:3000/ ,您将看到以下输出: