uni.createSelectorQuery().in(this) 不能使用getBoundingClientRect只能使用boundingClientRect吗
时间: 2023-11-14 20:12:31 浏览: 108
js getBoundingClientRect使用方法详解.docx
根据提供的引用内容,可以得出以下结论:
uni.createSelectorQuery().in(this) 和 uni.createSelectorQuery().select() 都可以使用 boundingClientRect() 方法来获取节点信息,而不能使用 getBoundingClientRect() 方法。这是因为 getBoundingClientRect() 方法只能在小程序中使用,而在uni-app中,需要使用 uni.createSelectorQuery() 方法来获取节点信息。而在获取节点信息时,需要使用 boundingClientRect() 方法来获取节点的位置和大小信息。
阅读全文