Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我创建一个 svg rect 时fill: black,我的onclick事件处理程序被调用。
fill: black
onclick
当我用 替换fill: black时fill: none,当我在矩形内单击时不会调用我的事件处理程序,而只会在我单击矩形的边框时调用。
fill: none
我需要更改什么才能检测到单击事件以在矩形内单击?
这由指针事件属性控制。看起来您想将其设置为可见
<rect pointer-events="visible" ...>