我目前正在使用一些js来检测何时到达我正在开发的站点的页面底部。我目前正在使用下面的脚本测试js:
$(window).scroll(function(){
if ($(window).scrollTop() == $(document).height() - $(window).height() ){
console.log('you are at the bottom');
}
});
我这里的问题是,它只在我滚动页面的顶部时触发,而不是底部,这不是我想要的效果。
有没有人知道为什么它不能工作?
谢谢,马克
当iframe的内容发生变化时,我使用以下脚本来调整它的大小:
<script language="JavaScript">
<!--
function autoResize(id){
var newheight;
var newwidth;
if(document.getElementById){
newheight=document.getElementById(id).contentWindow.document .body.scrollHeight;
newwidth=document.
我正在尝试通过链接的脚本创建脚本标记并将其注入到HTML网页中,例如: <script src="/link/to/my/js-plugin.js></script> 在js-plugin.js中有一个我想要注入的脚本标记。然而,当导航到我的网页时,出于某种原因,我会滚动到页面的底部。我正在使用appendChild,在删除它时,我没有滚动到页面底部,我在js-plugin.js中的代码如下所示: // get the head
var pageHead = document.head || document.getElementsByTagName('