2 回答

TA貢獻(xiàn)1772條經(jīng)驗(yàn) 獲得超6個(gè)贊
因此,我通過使用 Material UI 提供的工具提示找到了解決問題的方法。
像這樣:
<Tooltip title="Click Me!" placement="right" arrow>
? ? ? <IconButton
? ? ? ? onClick={() => handleTheme()}
? ? ? ? // onMouseOver={(e) => handleHover(e)}
? ? ? >
? ? ? ? <GetIcon icon={reactLogo} className="reactLogo" />
? ? ? </IconButton>
? ? </Tooltip>
如果有人設(shè)法在 Material UI 按鈕上使用不同的鼠標(biāo)事件方法,請(qǐng)?jiān)诖颂幇l(fā)布。謝謝!

TA貢獻(xiàn)1946條經(jīng)驗(yàn) 獲得超4個(gè)贊
你能嘗試stopPropagation嗎?
const handleHover = (e) => {
e.stopPropagation();
setAnchorEl(e.currentTarget)
}
添加回答
舉報(bào)