亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

vue中怎么獲取dom元素中的內容

vue
清風
1009
2021-03-15 19:40:18
欄目: 編程語言

vue中怎么獲取dom元素中的內容

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>

0
大丰市| 内乡县| 郁南县| 新田县| 孝感市| 四子王旗| 丹寨县| 武汉市| 米脂县| 当阳市| 弥渡县| 阿巴嘎旗| 铜梁县| 景东| 五常市| 赣榆县| 兴文县| 涪陵区| 平定县| 海淀区| 霍州市| 罗定市| 雅安市| 金寨县| 十堰市| 奉化市| 集贤县| 根河市| 乌鲁木齐市| 彭山县| 奉贤区| 怀远县| 泽州县| 石屏县| 永福县| 武清区| 合江县| 屏东县| 沈丘县| 阳山县| 司法|