当前位置:网站首页>Wechat applet page scrolls to the bottom

Wechat applet page scrolls to the bottom

2022-06-09 06:23:00 cs_ upupo

<template>
	<view class="cu-content" id="body-view">
        Content 
    </view>
</template>
<script>
   	//  Page scrolls to bottom   Use directly this.pageScrollToBottom();
	pageScrollToBottom:function() {		 
      wx.createSelectorQuery().select('#bodyview').boundingClientRect(function(rect) {
		//  Scroll page to bottom 
		   wx.pageScrollTo({
			scrollTop: rect.height
		   })
	  }).exec()
	},
</script>

原网站

版权声明
本文为[cs_ upupo]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/160/202206090606323000.html