小程序
小游戏
企业微信
微信支付
扫描小程序码分享
我用scroll-view作一个很长的时间滑动条,从6月到7月,所以这个scroll-view就很长,所以需要每次打开都默认滚动到当前时间,这个应该怎么做昂?
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
配合scroll-into-view来实现就可以了
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
<
scroll-view
class
=
"date"
scroll-x
"true"
scroll-into-view
"{{toView}}"
>
view
id
"{{item}}"
wx:for
"{{date}}"
wx:key
"*this"
>{{item}}</
</
data: {
date: [
"周四/06-14"
,
"周五/06-15"
"周六/06-16"
"周天/06-17"
"周一/06-18"
"周二/06-19"
],
toView:
},
为什么会提示不能以数字开头 我没有以数字开头啊
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
配合scroll-into-view来实现就可以了
<
scroll-view
class
=
"date"
scroll-x
=
"true"
scroll-into-view
=
"{{toView}}"
>
<
view
id
=
"{{item}}"
wx:for
=
"{{date}}"
wx:key
=
"*this"
>{{item}}</
view
>
</
scroll-view
>
data: {
date: [
"周四/06-14"
,
"周五/06-15"
,
"周六/06-16"
,
"周天/06-17"
,
"周一/06-18"
,
"周二/06-19"
,
"周四/06-14"
],
toView:
"周一/06-18"
,
},
为什么会提示不能以数字开头 我没有以数字开头啊