uni-app获取DOM元素

uni-app获取DOM元素

	uni.createSelectorQuery().select('#reasonSelf')
	uni.createSelectorQuery().select('.class类名')
	如果有许多相同类名的
		let doms=uni.createSelectorQuery().selectAll(‘.class1’)
		doms.fields({
			rect:true,   //是否返回节点布局位置信息{left,top,right,bottom}
			size:true,  //是否返回节点尺寸信息{width,height}
			scrollOffset:true //是否返回节点滚动信息{scrollLeft,scrollTop}
		},function(res){
			//res 可以返回第一个参数对象中指定为true的相关信息
		}).exec(function(){
			//上述节点信息获取成功后执行的回调函数
		})
上一篇:Uni-app——生命周期


下一篇:uni-app的基本使用