我有一个 React 函数组件,我在 props 中获得了另一个组件。像这样的东西:
function ChildComponent({cmp}) {
// Here onClick handlers should be added [for example:
// () => console.log("clicked")] to all
// elements in cmp of class .clickable
return ...
}
function ParentComponent() {
return (
<ChildComponent cmp={<div><button>Non-clickable</button><button className="clickable">Clickable</button></div>} />
)
}
那么如何在ChildComponent中的cmp props 变量中动态地将事件处理程序添加到具有可点击类的元素?预先感谢您的帮助。
qq_花开花谢_0
相关分类