vue中怎么获取dom元素中的内容 在vue中获取dom元素

主机教程 建站分享 2年前 (2022-11-11) 201次浏览

文章摘要:vue中怎么获取dom元素中的内容 在vue中获取dom元素

vue中获取dom元素中内容的方法: vue中是通过给标签加ref属性,然后在js中利用ref去引用它,从而操 […]

vue中获取dom元素中内容的方法:

vue中是通过给标签加ref属性,然后在js中利用ref去引用它,从而操作该dom元素。

示例:

<template> 

 <div> 

  <div id="box" ref="mybox"> 

   DEMO 

  </div> 

 </div> 

</template> 

  

<script> 

export default { 

 data () { 

  return { 

     

  } 

 }, 

 mounted () { 

  this.init(); 

 }, 

 methods:{ 

  init() { 

   const self = this; 

   this.$refs.mybox.style.color = 'red'; 

   setTimeout(() => { 

    self.$refs.mybox.style.color = 'blue'; 

   },2000) 

  } 

 } 

  

</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元素中的内容 在vue中获取dom元素
文章链接:http://www.7966.org/post/13380.html
转载请注明出处

喜欢 (0)