gpt4 book ai didi

jquery - 使用 event.target 获取元素

转载 作者:行者123 更新时间:2023-12-03 22:17:46 29 4
gpt4 key购买 nike

我基本上是试图从 event.target 获取目标元素,如果不相等则进行处理。我怎样才能让下面的事情发挥作用?

$(document).ready(function(){
$(document).click(function(event) {

if(event.target!='#contents') { //If clicked element is not div #contents show alert .. //How can i achieve this ?
alert("..");
}

});
});

最佳答案

使用

   //If clicked element id is not contents 
if(event.target.id !== 'contents') {
alert("..");
}

编辑 - 如果结构是您的评论使用的结构:

  if($(event.target).closest('div#contents').length === 0){
alert('there is no div with id === "contents" in the ancestors of the clicked li');
}

编辑2 - 我的代码的解释。如果您有此标记

<div id="contents"><ul><li>Item1</li><li>Item2</li></ul></div>

这段代码的意思

//event.target is a DOM element, so wrap it into a jQuery object
$(event.target)
.closest('div#contents')//find a div element going up the dom tree.
//This method returns a jQuery collection that it's
//empty if the div is not found
.length //the collection has a length
//property that is equal to the number of found elements

关于jquery - 使用 event.target 获取元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10026060/

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