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.
GWT 查询选择器,即 $("#id") 在回调函数中不起作用。但是 xyz.find("#id") 有效,其中 xyz -> Gquery 变量。是回调函数不支持 $ 选择器还是有其他问题。
您确定在调用回调函数时将带有 id "id" 的元素附加到 dom 吗?
当您执行 $("#id") 时,gQuery 会尝试在 DOM 树的元素集中查找与选择器匹配的元素。当您执行 xyz.find("#id") 时,gQuery 会尝试在 xyz 选择的元素数组中查找与选择器匹配的元素,无论这些元素是否仍在 dom 树中。