vue操作dom

2021-01-26  本文已影响0人  一只章鱼哥

1、 this.$refs.xxx拿到虚拟dom,可以进行真实dom的一切操作

1)在标签中添加ref="xxx"

2)在方法中用this.$refs.xxx拿到这个元素,跟document.getElementById('*')一样。

<template>
  <div>
    <div id="box" ref="mybox">
        DEMO
    </div>
  </div>
</template>

<script>
export default {
  data () {
    return {
        invt:''
    }
  },
  mounted () {
    this.init();
  },
  beforedestroy () {
    clearTimeout(this.invt);
  },
  methods:{
    init() {
      this.$refs.mybox.style.color = 'red';
      this.invt = setTimeout(() => {
        this.$refs.mybox.style.color = 'blue';
      }, 1000)
    }
  }

}
</script>

<style scoped>
  #box {
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 20px;
    text-align: center;
    border: 1px solid black;
    margin: 50px;
    color: yellow;
  }
</style>

上一篇 下一篇

猜你喜欢

热点阅读