0

我的页面包含多个 div。每个 div 都会调用一个 iframe。

 <div class="modelImge" id="div1456"><iframe src="randomImge.html"></div>
 <div class="modelImge" id="div487421"><iframe src="randomImge.html"></div>

iframe 的内容是动态变化的。有没有办法知道 div 的 id。

4

2 回答 2

0

div 的 id 不会改变。即使 iframe 的 src 改变,包含该框架的 div 也不会改变。

我的问题是:你想在你的页面或“randomImag.html”中找到一个 div。如果它在您的页面中,则 id 将是相同的,无论内容如何。

于 2013-07-09T14:30:04.863 回答
0

由于同源策略,您不能直接跨 iframe 的“边界”访问数据。这意味着在 iframe 中打开的站点无法访问或了解 iframe 包含的 div,并且您的基础站点无法访问 iframe 提供的内容。

于 2013-07-09T14:19:17.983 回答