gpt4 book ai didi

javascript - 使用 mouseup 事件和调用函数的 dbclick 事件选择文本

转载 作者:行者123 更新时间:2023-11-30 05:35:08 25 4
gpt4 key购买 nike

我寻找 jquery 选择文本事件,我找到了 this example .在此示例中,mouseup 事件和 dbclick 事件一样有效。

我向这段代码添加了一个函数,它有返回值,但现在 dbclick 不起作用。 jsFiddle

if (!window.James) { James = {}; }

James.Selector = {};

James.Selector.mouseup = function (e) {
var userSelection;
if (window.getSelection) {
userSelection = window.getSelection();
}
else if (document.selection) {
// should come last; Opera!
userSelection = document.selection.createRange();
}

var selectedText = userSelection;
if (userSelection.text) selectedText = userSelection.text;

if (selectedText != '') {
return selectedText + '------' + e.pageX + '/' + e.pageY;
}
}

$(document).ready(function () {
$(document).bind("mouseup", function (e) {
alert(James.Selector.mouseup(e))
window.getSelection().removeAllRanges();
});
});

最佳答案

我想你的意思是这样的:http://jsfiddle.net/WBLQz/11/

只需设置一个 setTimeout() 使其也能够进行 dblclick。

关于javascript - 使用 mouseup 事件和调用函数的 dbclick 事件选择文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24332100/

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