文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Vue3怎么操作dom

2023-07-04 11:34

关注

本篇内容介绍了“Vue3怎么操作dom”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

通过ref直接拿到dom引用

<template>    <div>        <div ref="sectionRef"></div>    </div></template><script setup>import {ref} from 'vue'const sectionRef = ref()</script>

通过对div元素添加了ref属性,为了获取到这个元素,我们声明了一个与ref属性名称相同的变量sectionRef,然后我们通过 sectionRef.value 的形式即可获取该div元素。

适用场景

单一dom元素或者个数较少的场景

示例代码

<template>    <div>        <p>通过ref直接拿到dom</p>        <div ref="sectionRef"></div>        <button @click="higherAction">变高</button>    </div></template><script setup>import {ref} from 'vue'const sectionRef = ref()let height = 100;const higherAction = () => {    height += 50;    sectionRef.value.style = `height: ${height}px`;}</script><style scoped>.demo1-container {    width: 100%;    height: 100%;    .ref-section {        width: 200px;        height: 100px;        background-color: pink;        transition: all .5s ease-in-out;    }    .btn {        width: 200px;        height: 50px;        background-color: gray;        color: #fff;        margin-top: 100px;    }}</style>

通过父容器的ref遍历拿到dom引用

<template>    <div>        <div ref="listRef">            <div @click="higherAction(index)" v-for="(item, index) in state.list" :key="index">                <span>{{item}}</span>            </div>        </div>    </div></template><script setup>import { ref, reactive } from 'vue'const listRef = ref()

通过对父元素添加了ref属性,并声明了一个与ref属性名称相同的变量listRef,此时通过listRef.value会获得包含子元素的dom对象

Vue3怎么操作dom

此时可以通过listRef.value.children[index]的形式获取子元素dom

适用场景

通过v-for循环生成的固定数量元素的场景

示例代码

<template>    <div>        <p>通过父容器遍历拿到dom</p>        <div ref="listRef">            <div @click="higherAction(index)" v-for="(item, index) in state.list" :key="index">                <span>{{item}}</span>            </div>        </div>    </div></template><script setup>import { ref, reactive } from 'vue'const listRef = ref()const state = reactive({    list: [1, 2, 3, 4, 5, 6, 7, 8]})const higherAction = (index: number) => {    let height = listRef.value.children[index].style.height ? listRef.value.children[index].style.height : '20px';    height = Number(height.replace('px', ''));    listRef.value.children[index].style = `height: ${height + 20}px`;}</script><style scoped>.demo2-container {    width: 100%;    height: 100%;    .list-section {        width: 200px;        .list-item {            width: 200px;            height: 20px;            background-color: pink;            color: #333;            transition: all .5s ease-in-out;            display: flex;            justify-content: center;            align-items: center;        }    }}</style>

通过:ref将dom引用放到数组中

<template>    <div>        <div>            <div :ref="setRefAction" @click="higherAction(index)" v-for="(item, index) in state.list" :key="index">                <span>{{item}}</span>            </div>        </div>    </div></template><script setup>import { reactive } from 'vue'const state = reactive({    list: [1, 2, 3, 4, 5, 6, 7],    refList: [] as Array<any>})const setRefAction = (el: any) => {    state.refList.push(el);}</script>

通过:ref循环调用setRefAction方法,该方法会默认接收一个el参数,这个参数就是我们需要获取的div元素

Vue3怎么操作dom

此时可以通过state.refList[index]的形式获取子元素dom

适用场景

通过v-for循环生成的不固定数量或者多种元素的场景

示例代码

<template>    <div>        <p>通过:ref将dom引用放到数组中</p>        <div>            <div :ref="setRefAction" @click="higherAction(index)" v-for="(item, index) in state.list" :key="index">                <span>{{item}}</span>            </div>        </div>    </div></template><script setup>import { reactive } from 'vue'const state = reactive({    list: [1, 2, 3, 4, 5, 6, 7],    refList: [] as Array<any>})const higherAction = (index: number) => {    let height = state.refList[index].style.height ? state.refList[index].style.height : '20px';    height = Number(height.replace('px', ''));    state.refList[index].style = `height: ${height + 20}px`;    console.log(state.refList[index]);}const setRefAction = (el: any) => {    state.refList.push(el);}</script><style scoped>.demo2-container {    width: 100%;    height: 100%;    .list-section {        width: 200px;        .list-item {            width: 200px;            height: 20px;            background-color: pink;            color: #333;            transition: all .5s ease-in-out;            display: flex;            justify-content: center;            align-items: center;        }    }}</style>

通过子组件emit传递ref

<template>    <div ref="cellRef" @click="cellAction">        <span>{{item}}</span>    </div></template><script setup>import {ref} from 'vue';const props = defineProps({    item: Number})const emit = defineEmits(['cellTap']);const cellRef = ref();const cellAction = () => {    emit('cellTap', cellRef.value);}</script>

通过对子组件添加了ref属性,并声明了一个与ref属性名称相同的变量cellRef,此时可以通过emit将cellRef.value作为一个dom引用传递出去

Vue3怎么操作dom

适用场景

多个页面都可能有操作组件dom的场景

示例代码

<template>    <div ref="cellRef" @click="cellAction">        <span>{{item}}</span>    </div></template><script setup>import {ref} from 'vue';const props = defineProps({    item: Number})const emit = defineEmits(['cellTap']);const cellRef = ref();const cellAction = () => {    emit('cellTap', cellRef.value);}</script><style scoped>.cell-item {    width: 200px;    height: 20px;    background-color: pink;    color: #333;    transition: all .5s ease-in-out;    display: flex;    justify-content: center;    align-items: center;}</style>
<template>    <div>        <p>通过子组件emit传递ref</p>        <div>            <Cell :item="item" @cellTap="cellTapHandler" v-for="(item, index) in state.list" :key="index">            </Cell>        </div>    </div></template><script setup>import { reactive } from 'vue'import Cell from '@/components/Cell.vue'const state = reactive({    list: [1, 2, 3, 4, 5, 6, 7],    refList: [] as Array<any>})const cellTapHandler = (el: any) => {    let height = el.style.height ? el.style.height : '20px';    height = Number(height.replace('px', ''));    el.style = `height: ${height + 20}px`;}</script><style scoped>.demo2-container {    width: 100%;    height: 100%;    .list-section {        width: 200px;    }}</style>

“Vue3怎么操作dom”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯