gpt4 book ai didi

javascript - 使用javascript删除选择

转载 作者:搜寻专家 更新时间:2023-11-01 05:03:06 25 4
gpt4 key购买 nike

我正在开发具有可拖动滚动条的图像查看器。当用户拖动滚动条时,网页上的某些文本会被选中。我试过了

window.getSelection().removeAllRanges();

但这在 IE7/8 中似乎不起作用。也试过

document.getSelection().removeAllRanges();

这似乎与 IE7/8 一样“好”。

还有其他方法吗?不知道任何 jQuery 解决方案,但如果有,请告诉我(:

编辑:这是鼠标事件的上下文

$("#slideBar").mousedown(function(f) {
mouseDown = true;
some more code...
}

$(document).mouseup(function() {
if (mouseDown) {
window.getSelection().removeAllRanges();
more code...
}
}

最佳答案

尝试在您使用的函数上返回 false,尤其是“mousedown”事件。在 document.onselectstart 和 document.ondragstart 上返回 false 也会有所帮助。

关于javascript - 使用javascript删除选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/765224/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com