vue中表单提交,当提交表单的时候,有必填项未填写自动定位到第一个未填写的地方
this.$nextTick(() => {let isError = document.getElementsByClassName('is-error')isError[0].scrollIntoView({// 滚动到指定节点// 值有start,center,end,nearest,当前显示在视图区域中间block: 'center',// 值有auto、instant,smooth
·
this.$nextTick(() => {
let isError = document.getElementsByClassName('is-error')
isError[0].scrollIntoView({
// 滚动到指定节点
// 值有start,center,end,nearest,当前显示在视图区域中间
block: 'center',
// 值有auto、instant,smooth,缓动动画(当前是慢速的)
behavior: 'smooth',
})
})
更多推荐
已为社区贡献2条内容
所有评论(0)