gpt4 book ai didi

html - 定位 iFrame 内容

转载 作者:行者123 更新时间:2023-11-28 08:24:57 24 4
gpt4 key购买 nike

我想使用 iFrame 显示以下页面: http://www.workbooks.com/training/courses

我只想显示页面内容,而不是顶部或左侧导航/内部广告。

我试过以下方法:

<iframe scrolling="no" frameborder="0" src="http://www.workbooks.com/training/courses" allowtransparency="true" style="height:100%;width:75%;">
</iframe>

它没有显示 75% 的内容宽度,而是减少了 iFrame 的整体宽度。

请指教。

最佳答案

iframe 不适合此任务,您可以尝试 jquery。

<div id = "showContent"></div>

<button id = "btn" onclick="showit()">Show info from another page.</button>
<script>
$(document).ready(function(){
$("#btn").click(function(){
$('#showContent').load('http://mywebs.com');
});

});
</script>

关于html - 定位 iFrame 内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28562035/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com