gpt4 book ai didi

javascript - 不允许 iframe 滚动,直到父级到达底部

转载 作者:行者123 更新时间:2023-12-02 18:05:51 25 4
gpt4 key购买 nike

我有一个带有 iframe 的页面,iframe 有足够的内容,它总是必须有一个滚动条。

如何只允许 iframe 在父页面位于底部时开始滚动?

最佳答案

<html>
<head>
<script type="text/javascript" src="jq.js"></script>
<script type="text/javascript">

$(document).ready(function()
{
var scrollHeight;

$('body').animate({scrollTop: 1200},10,function()
{
scrollHeight=$(window).scrollTop();
$('body').scrollTop(0)
})

$('iframe').contents().find('body').css({

'overflow-y':'hidden'
})

$('iframe').contents().find('body').append($('body').clone())

$('iframe').contents().find('body iframe').css('background','lightblue')

$('iframe').contents().find('body').css('background','lightgreen').find('h3').text("Cloned")

//note that horizontal bar inside iframe belongs to cloned body not iframe

$(window).scroll(function(){
var st = $(this).scrollTop();

if(st >=scrollHeight){

$('iframe').contents().find('body').css({

'overflow-y':'auto'
})
}
});
})

</script>

</head>
<body>
<h3>Page content goes here</h3>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>

<iframe style=" border: 2px red solid" height="300px" width="100%" scrolling="yes"></iframe>
<p>&nbsp;</p>
</body>
</html>

使用 chrome 31.0.1650.57 m、opera 16.0.1196.73、safari 5.1.7

没有工作过
火狐 25.0.1 reason can be

IE9 如预期哈哈:)

在问题提及的评论后编辑

我还没有测试过这个,但希望它能起作用

<iframe name="frame" src="xyz.php" style=" border: 2px red solid" height="300px" width="100%" scrolling="yes"></iframe>

.

$(window).load(function()
{
var scrollHeight;
$('body').animate({scrollTop: 1200},10,function()
{
scrollHeight=$(window).scrollTop();
$('body').scrollTop(0)
})

var doc=window.frames[ "frame" ].document //use iframe's name

$(doc).ready(function(){
$('iframe').contents().find('body').css('overflow','hidden')

});



$(window).scroll(function(){
var st = $(this).scrollTop();

if(st >=scrollHeight){

$('iframe').contents().find('body').css('overflow','auto')
}
});
})

关于javascript - 不允许 iframe 滚动,直到父级到达底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20116207/

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