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.
我在一个页面上使用带有两个滑块的引导滑块。我的问题是,如果我在仍然拖动鼠标的同时将鼠标拖离手柄,则会选择页面中的文本。
该问题也出现在演示页面上(仅限 Firefox)。
问题可以在下图中看到:
我尝试了这个解决方案,但没有奏效。
更新:它只发生在 Firefox 中,而不是 Chrome。
将此用于所有浏览器:
.slider .tooltip-inner { -webkit-user-select: none; /* Chrome all / Safari all */ -moz-user-select: none; /* Firefox all */ -ms-user-select: none; /* IE 10+ */ user-select: none; /* Likely future */ }