我有一个带有foobar
classed的DIV,并且该DIV中有一些未分类的DIV,但是我想它们正在继承foobar
该类:
$('.foobar').on('click', function() { /*...do stuff...*/ });
我希望仅在单击DIV中的某个位置而不在其子DIV上单击时才会触发。
我有一个带有foobar
classed的DIV,并且该DIV中有一些未分类的DIV,但是我想它们正在继承foobar
该类:
$('.foobar').on('click', function() { /*...do stuff...*/ });
我希望仅在单击DIV中的某个位置而不在其子DIV上单击时才会触发。
Answers:
如果e.target
元素与相同this
,则您没有单击后代。
$('.foobar').on('click', function(e) {
if (e.target !== this)
return;
alert( 'clicked the foobar' );
});
.foobar {
padding: 20px; background: yellow;
}
span {
background: blue; color: white; padding: 8px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div class='foobar'> .foobar (alert)
<span>child (no alert)</span>
</div>
===
或!==
用途“严格相等比较算法”,而==
和!=
用途“抽象相等比较算法”,它的类型的矫顽。一般的智慧是始终使用严格的比较,除非特别需要强制类型(因为其规则有些复杂)。在这种情况下,因为正在比较对象,所以实际上并没有什么不同,但是您会发现大多数人仍然会坚持严格的比较。
如果您不介意仅针对较新的浏览器,则还有另一种可行的方法。只需添加CSS
pointer-events: none;
您想要捕获点击的div的所有子级。这是支持表
click
应该阻止程序化点击事件触发器?
您可以使用冒泡方式:
$('.foobar').on('click', function(e) {
// do your thing.
}).on('click', 'div', function(e) {
// clicked on descendant div
e.stopPropagation();
});
<a>
元素的点击。有一个问题:当我单击它们时,该事件仍然会触发(在Google Chrome中测试)。有这样的变体也可以防止这种情况吗?
//bind `click` event handler to the `.foobar` element(s) to do work,
//then find the children of all the `.foobar` element(s)
//and bind a `click` event handler to them that stops the propagation of the event
$('.foobar').on('click', function () { ... }).children().on('click', function (event) {
event.stopPropagation();
//you can also use `return false;` which is the same as `event.preventDefault()` and `event.stopPropagation()` all in one (in a jQuery event handler)
});
这将停止click
事件在该元素的任何子元素上的传播(冒泡),.foobar
因此该事件不会到达该.foobar
元素以触发其事件处理程序。
这是一个演示:http : //jsfiddle.net/bQQJP/
我的情况与此类似,但是这种情况下您的foobar
-s 很少,而您每次单击只希望关闭一个-s:
$(".foobar-close-button-class").on("click", function () {
$(this).parents('.foobar').fadeOut( 100 );
// 'this' - means that you finding some parent class from '.foobar-close-button-class'
// '.parents' -means that you finding parent class with name '.foobar'
});
$(".foobar-close-button-class").on("click", function () {
$(this).child('.foobar-close-button-child-class').fadeOut( 100 );
// 'this' - means that you finding some child class from '.foobar-close-button-class'
// '.child' -means that you finding child class with name '.foobar-close-button-child-class'
});
如果您无法使用pointer-events: none;
并定位到现代浏览器,则可以使用以下方法composedPath
来检测对对象的直接点击:
element.addEventListener("click", function (ev) {
if (ev.composedPath()[0] === this) {
// your code here ...
}
})
您可以在此处阅读有关composedPath的更多信息:https : //developer.mozilla.org/en-US/docs/Web/API/Event/composedPath
// if its li get value
document.getElementById('li').addEventListener("click", function(e) {
if (e.target == this) {
UodateNote(e.target.id);
}
})
function UodateNote(e) {
let nt_id = document.createElement("div");
// append container to duc.
document.body.appendChild(nt_id);
nt_id.id = "hi";
// get conatiner value .
nt_id.innerHTML = e;
// body...
console.log(e);
}
li{
cursor: pointer;
font-weight: bold;
font-size: 20px;
position: relative;
width: 380px;
height: 80px;
background-color: silver;
justify-content: center;
align-items: center;
text-align: center;
margin-top: 0.5cm;
border: 2px solid purple;
border-radius: 12%;}
p{
cursor: text;
font-size: 16px;
font-weight: normal;
display: block;
max-width: 370px;
max-height: 40px;
overflow-x: hidden;}
<li id="li"><p>hi</p></li>