我正在尝试向我的 React 应用程序中的图标添加一个事件侦听器,以便我可以在单击该图标时触发一个函数(单击周围是TextField
不够的)。我需要手动执行此操作,因为元素click
上没有属性。fluentui-react
到目前为止,虽然我可以根据我的 console.log 看到已选择了正确的 DOM 元素,但当我单击该图标时,什么也没有发生。
我正在处理这个componentDidUpdate()
,像这样:
componentDidUpdate() {
const node = ReactDOM.findDOMNode(this);
if (this.props.sessionsWithNotes.length) {
if (node instanceof HTMLElement) {
const child = node.querySelector('i');
console.log('child: ', child); // I see this in the console
child.addEventListener('click', () => console.log("Clear icon clicked!")); // This does not print to the console upon click of the icon
}
}
}
需要明确的是child
,我登录到控制台的显示如下:
<i data-icon-name="clear" aria-hidden="true" class="icon-167"></i>
所以这是正确的图标元素。但是,当我在控制台中看到它显示后单击它时,什么也没有发生 - 即我的 console.log 中的“Clear icon clicked!” 不会打印到控制台。
请注意,使用 的相关 JSX 块react-fluent-ui
如下所示:
<TextField
label="ID:"
defaultValue={this.props.filters.id}
onChange={this.onFilterById}
styles={{ root: { maxWidth: 300 } }}
borderless
underlined
iconProps={iconProps}
/>
iconProps
看起来像这样:
const iconProps = {
iconName: 'clear',
cursor: 'pointer',
};
我在这里想念什么?