(container)
| 13630 | |
| 13631 | //获取已滚动的距离 |
| 13632 | function getScrolled(container){ |
| 13633 | if(container){ |
| 13634 | return { |
| 13635 | x:container.scrollLeft, |
| 13636 | y:container.scrollTop, |
| 13637 | }; |
| 13638 | } |
| 13639 | return { |
| 13640 | x:'scrollX' in window ? window.scrollX : ('pageXOffset' in window ? window.pageXOffset : document.documentElement.scrollLeft || getBody(document).scrollLeft), |
| 13641 | y:'scrollY' in window ? window.scrollY : ('pageYOffset' in window ? window.pageYOffset : document.documentElement.scrollTop || getBody(document).scrollTop), |
| 13642 | }; |
| 13643 | } |
| 13644 | |
| 13645 | //xpath 获取单个元素 |
| 13646 | function getElementByXpath(xpath,contextNode,doc){ |
no test coverage detected