我想使用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的整体宽度。
请告知。
答案 0 :(得分:0)
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>