UNPKG
toscrollbottom
Version:
latest (1.0.0)
1.0.0
滚动到页面的最底部
toscrollbottom
/
toScrollBottom.ts
10 lines
•
294 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * 滚动到页面的最底部 *
@param
element dom元素的id *
@returns
传入的dom元素 */
export
default
function
(
element: string
) {
const
main =
document
.
getElementById
(element)
document
.
getElementById
(element).
scrollTop
= main.
scrollHeight
+
99999999
return
main }