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.
我需要选择所有容器,包括容器内的表格、div 和 iFrame。里面的容器都没有设置 id 或 classes。
我试过$('#google_map > *')了,但没有做到。这甚至可能吗?
$('#google_map > *')
这是最好的方法:
$('#google_map').find('*')
你可以有多个标签选择器:
$("table,div,iframe")
文件
有可能的。
$('html').find('*');
在您的示例中,您使用的是直接后代选择器,它只会获取直接位于 'below' 的元素#google_map,类似于children()将返回的元素。
#google_map
children()
$(container).children() 应该管用
$(container).children()