百度一下说是iframe不支持单击事件
<div style={{position:'relative'}}>
<iframe
style={{
width: '-webkit-fill-available',
height: '-webkit-fill-available'
}}
src={data.iframe}
>
</iframe>
<div
onClick={onClickImage} //思路通过单击遮罩实现点击iframe
style={{
position: 'absolute',
top: '0',
left: '0',
right: '0',
bottom: '0',
backgroundColor: "rgba(0,0,0,0)"
}}>
</div>
</div>Ï