Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在尝试查看跨度是否包含另一个时遇到问题。所以,我有一个可拖动的项目,它需要在另一个跨度中才能显示消息。 如果我的 span #piece 在 span #answer 中,我如何使用 jquery 或 javascript 检查?
谢谢
使用 jQuery contains。在这里阅读。
contains
编辑:
不过,您需要将第一个参数转换为 DOM 元素。如果这不是微不足道的事情,find那就更好了。
find
if ($('#answer').find('#piece').length == 1) // your span is inside