如何从iframe中删除滚动条?

问题描述 投票:0回答:4

我使用 iframe 为 html 页面中的 pdf 链接提供图像图标。 我尝试使用溢出:隐藏,滚动:“否”等从 iframe 中删除滚动条。但他们都不能在 Chrome 中工作。在 Firefox 中尝试时,滚动条被删除,但图像不可用。 请帮我解决这个问题。 这是完整的代码:

<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/css/bootstrap-responsive.css" rel="stylesheet">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link type="text/css" href="cssjquery/ui-lightness/jquery-ui-1.8.24.custom.css" rel="stylesheet" />
<title>Unit 3, ADS</title>
<style type="text/css">
/* one */
.imagewrap {
    display: inline-block;
    position: relative;
}

.icon-remove-sign {
    position: absolute;
    top: 0;
    right: 0;
}
iframe{
    overflow:hidden;
}

</style>


<script src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script src="http://code.jquery.com/jquery.js"></script>
<script type="text/javascript" src="jsjquery/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="jsjquery/jquery-ui-1.8.24.custom.min.js"></script>
<script type="text/javascript">

$(document).ready(function(){ 
$('i.icon-remove-sign').on('click',function(e){
    e.preventDefault();
    pdfID = $(this).closest('.imagewrap')[0].id;
    $('#dialog').dialog('open');
  alert('Deleting '+pdfID+'');
   $(this).closest('.imagewrap')
        .fadeTo(300,0,function(){
            $(this)
                .animate({width:0},200,function(){
                    $(this)
                        .remove();
                });
        });   
});
}); 

function resizeIframe(obj) {
    obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
  }
</script>
</head>
<body>


    <h1>PDF Files</h1>
<br><br>
    <div class="imagewrap" id="pdf1">
        <a href="something.pdf">
        <img  width="100" height="100" border="0">
        <iframe src="something.pdf" width="100%" frameborder="0" scrolling="no" id="iframe" onload='javascript:resizeIframe(this);'></iframe></img>
        </a>&nbsp;&nbsp;<i class=" icon-remove-sign" ></i>
    </div>
html image iframe
4个回答
8
投票

您可以在 iframe 中设置属性

scrolling= 'no'

<iframe src="..." style="overflow:hidden" scrolling="no" />

这是一个小提琴

更新

这是一个带有有效 pdf 链接的 fiddle。在我的浏览器(ff、chrome)上看起来没问题


2
投票

请尝试此代码

<iframe src="your site url" width="100%" frameborder="0" scrolling="no" id="iframe" onload='javascript:resizeIframe(this);'></iframe>

<script language="javascript" type="text/javascript">
  function resizeIframe(obj) {
    obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
  }
</script>

添加演示链接


1
投票
<style>
iframe::-webkit-scrollbar {
     display: none; 
}
</style>

使用上面的方法从 chrome 上的 iframe 中删除滚动条


0
投票

添加滚动属性为“no”会隐藏滚动条。

<iframe scrolling="no">Loading…</iframe>
© www.soinside.com 2019 - 2024. All rights reserved.