Blazor - 在 mousedown 事件后用鼠标移动时关闭文本选择

Blazor - turning off text selection when moving with mouse after mousedown event

我正在 Blazor 中开发 table。我想使用 mousedown 和 mouseup 事件为 select 添加 table 中更多单元格的可能性。当用户按住鼠标按钮时,他可以移动 select 个单元格,直到他松开鼠标按钮。一切正常,只有一个问题:连同 selecting 单元格,我正在 selecting 每一个文本,即使在单元格之外,这看起来不太好。

Blazor 中有什么简单的方法可以在按住鼠标按钮后关闭文本 selection?

谢谢!

如果您只希望文本在拖动鼠标时无法select可用(因此如果您这样做,select 文本的唯一方法是使用键盘)...

在 onmousedown 处理程序中,将 table 的 CSS 样式更改为 user-select: none;,然后在 onmouseup 中删除该样式。