我发现了一些奇怪的东西,也许有解决办法?
我有一个选择器:[data-pcId=1369592034]
// alerts 1, it finds the carousel in the parent document which
//has the attribute: data-pcId="1369592034"
alert($('.carousel', window.parent.document).length);
// alerts 0, so not found
alert($(selector, window.parent.document).length);
当我输入$(selector, window.parent.document)
或$(selector)
在 Firebug中找到元素时,当然两个查询实际上都在做同样的事情,因为它检查外部的元素iframe
,然后window.parent.document
与document