vue 点击获取dom元素的位置 getBoundingClientRect()

html:
 

 
  • {{tag.label}}

js:

 //添加商品到购物车
        addtocart(e,tag){
            //让我们小球显示出来
            this.ball.show=true
            //获取点击元素
     const rect=e.target.getBoundingClientRect()//获取点击的dom的位置
            console.log(rect)
        },

vue 点击获取dom元素的位置 getBoundingClientRect()_第1张图片

你可能感兴趣的:(vue2.0,vue3.0,周家大小姐)