1.封装获取元素的方法
utils.js
function query(id, fn) {
let query = wx.createSelectorQuery();
query.select(id).boundingClientRect()
query.selectViewport().scrollOffset()
query.exec(fn)
}
export default{
query
}
2.页面js中引入文章来源:https://www.toymoban.com/news/detail-564950.html
import utils from "../../utils/utils"
3.页面js中使用文章来源地址https://www.toymoban.com/news/detail-564950.html
query('#bgcolor', function (res) {
if (res[0]) {
wx.pageScrollTo({
scrollTop: res[0].height + that.data.comment,
duration: 300
})
}
})
到了这里,关于微信小程序获取元素节点并对其进行操作的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!