我看过一些关于访问 iframe 内数据的文章,所以我在 iframe 中加载的页面中有一个像这样的表:<table class="table">...</table>
所以我只想在那个 iframe 中显示这个表,没有任何标题或其他 div 或任何东西
我怎么能用 jQuery 做到这一点?
更新:
html 代码如下所示:我将表格添加到<div>
<div id="test">
<br>
<table class="table">
<thead>
<tr>
<th> ...... // and so on
所以,我只想在那个 iframe 中显示这个 div
阿迪尔的更新:
$(window).load(function () {
var filteredContents = $('.test').contents().find('.div_iframe').html();
$('.test').contents().find('body').html(filteredContents);
});
HTML 看起来像这样:
<iframe class="test" width="100%" height="100%" src="/message.html?msjId=268" style="height:100%;width:100%;">
<iframe class="test" width="100%" height="100%" src="/message.html?msjId=260" style="height:100%;width:100%;">
以及现在应该显示的表格,它们应该是两个不同的表格,但目前两者都是同一张表格,但与第一个表格msjId
重复msjId
...