我创建React.Portal
了一些内联样式,这些样式根本不会在 Internet Explorer 中呈现。
这是我的组件。
const {
x, y, height, width,
} = popupAnchorRef.getBoundingClientRect();
return ReactDOM.createPortal(
<div
ref={popupRef}
>
<div
role="presentation"
className={popupAnchorStyle}
style={{
left: x,
top: topPositionAnchor,
}}
/>
<div
className={popupStyle}
style={styleForPopupPosition}
>
<PopupContents alias={alias} handleClosePopup={handleClosePopup} />
</div>
</div>
,
document.body,
);
};
我在 html 中有这个元数据<meta http-equiv="X-UA-Compatible" content="IE=edge">
注意:内联样式适用于任何其他组件。