码迷,mamicode.com
首页 > 其他好文 > 详细

ref指令

时间:2020-03-14 14:32:45      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:标签   nbsp   doctype   span   code   utf-8   charset   extc   alert   

1、案例1

<!DOCTYPE html>
<html>

<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>ref指令</title>
</head>

<body>
    <div id="app">
        <button @click="showText">按钮</button>
        <p ref="hello">{{msg}}</p>
    </div>
    <script src="../js/vue.js" type="text/javascript"></script>
    <script>
        const vm = new Vue({
            el: "#app",
            data: {
                msg: "你好吗"
            },
            methods: {
                showText() {
                    //this.$refs.hello 获取p标签
                    //alert p标签的内容
                    alert(this.$refs.hello.textContent);
                }
            }
        });
    </script>
</body>

</html>

 

ref指令

标签:标签   nbsp   doctype   span   code   utf-8   charset   extc   alert   

原文地址:https://www.cnblogs.com/liuyang-520/p/12491741.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!