gpt4 book ai didi

javascript - jquery dblclcik 事件没有给出被点击的元素

转载 作者:行者123 更新时间:2023-11-28 02:42:52 25 4
gpt4 key购买 nike

你好,我正在尝试获取一个 jquery 对象。但它总是返回未定义的。我已附上 jsfiddle 供您引用。 https://jsfiddle.net/tsrdkote/

这是我使用的代码

$(document).dblclick(function(e) {
console.log($(this));
if (e.target.attributes.getNamedItem("data-type")) {
if (e.target.attributes.getNamedItem("data-type").value != "group") {
var type = e.target.parentNode.attributes.getNamedItem("data-type").value
object = $(e.target);
if (type == "text") {
var t = document.createAttribute("contenteditable");
t.value = "true";
e.target.attributes.setNamedItem(t);
e.target.focus()
}
}
} else {
var type = e.target.parentNode.attributes.getNamedItem("data-type").value;
object = $(this).parent();
console.log(object)
if (type == "text") {
var t = document.createAttribute("contenteditable");
t.value = "true";
e.target.attributes.setNamedItem(t);
e.target.focus()
}
}
});

这里当前元素 $(this) 总是返回长度为 0 的 JQuery 对象。我是不是遗漏了什么?

最佳答案

object = $(this).parent();

应该是:

object = $(e.target).parent();

关于javascript - jquery dblclcik 事件没有给出被点击的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42871253/

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