选择附加到光标的div所覆盖的节点

时间:2016-01-06 22:50:00

标签: javascript jquery html css

我有一个附加到光标的div,但是想要选择它下面的div。 trying to click a div under another div that's attached to the cursor

fiddle

我无法使用cursor: url(...)属性,因为我想设置'光标'。

那么当红色光标附加到光标时,如何选择黄色div?

1 个答案:

答案 0 :(得分:3)

只需将pointer-events: none;添加到#bar

CSS:

#bar {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #f00;
  pointer-events: none;
}

这是updated fiddle