1.做瀑布流會使用到的獲取一些高度的方法(jquery)
scrolltop(offset): 返回或者配置匹配元素的滾動條的垂直位置:offset指滾動條相對於頂部的偏移
eg:
var t = $(window).scrolltop(); 獲取window滾動條高度
var dheight = $(document).height();//document 文件高度
var wheight = $(window).height();//獲取可視區高度
if(dheight<=(t+wheight))
css中的某些屬性可能會影響到瀑布流的載入:overflow-x:hidden
2.頁面定位到某個元素的高度
·獲取某個元素距離頂部的高度
var height = dom.offsettop();//js
var height = $("#id").offset().top;//jquery
·重新定位滾到條位置
$(window).scrolltop(height);
ifream子頁面高度問題
監測ifream高度 父頁面新增一下 用以檢測子頁面高度 使用ifream的load 方法檢測子頁面高度發生變化時候觸發事件 每次給ifream的容器重新賦予高度 function window,undefined timeout id,str settimeout settimeout str r...
js jquery父頁面 子頁面互相呼叫
1.呼叫父頁面方法 window.parent.window.test 呼叫父層window的test 方法 window.top.window.test 呼叫頂層window的test方法前提是父頁面方法要全域性訪問到,比如放到ready中就訪問不到,直接放到下2.呼叫子頁面方法 window.f...
jq獲取頁面高度 JQuery獲取頁面高度寬度
alert window height 瀏覽器當前視窗可視區域高度 alert document height 瀏覽器當前視窗文件的高度 alert document.body height 瀏覽器當前視窗文件body的高度 alert document.body outerheight true ...