美文网首页
vue操作dom

vue操作dom

作者: 一只章鱼哥 | 来源:发表于2021-01-26 17:10 被阅读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>

相关文章

网友评论

      本文标题:vue操作dom

      本文链接:https://www.haomeiwen.com/subject/ogmazktx.html