继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

ios 系统10.2.1 中 Vue项目设置scrollTo(0,0)失效问题及解决

zhangfl_go
关注TA
已关注
手记 40
粉丝 28
获赞 163

ios 系统10.2.1 中 Vue项目设置scrollTo(0,0)失效问题及解决

scrollTo与scrollTop

滚动到顶部我开始是这样写的

	<template>
		<div id='container' ref= 'container'>
			....
			<div class='btn' @click='scrollToTop'>滚动到顶部</div>
		</div>
	</template>
	<script>
		export default{
			data(){
				return{}
			},
			methods(){
				scrollToTop(){
					this.$refs.container.scrollTo(0,0)
				}
			}
		}
	</script>

然后10.2.1系统ios控制台一直报错 this.$refs.container.scrollTo is undefined,我自己手机系统是13.6.1 可以正常滚动,我分别打出来发现,10.2.1系统手机没有scrollTo 方法,但是有个scrollTop属性!
果断加判断

	if(this.$refs.container.scrollTo){
		this.$refs.container.scrollTo(0,0)
	}else{
		this.$refs.container.scrollTop = 0
	}
打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP

热门评论

Tttttt5tttttytttt66666666666666666

查看全部评论