美文网首页
Vue中获取dom元素之ref

Vue中获取dom元素之ref

作者: 最爱喝龙井 | 来源:发表于2019-08-15 11:25 被阅读0次

    ref

    Vue中可以通过ref属性绑定Dom元素,通过this.$refs获取页面中的Dom元素

    image.png

    例:

    <div id="app">
            <input type="button" value='get' @click='get'>
            <h1 ref='myh1'>hello world</h1>
        </div>
    
        <script>
            var vm = new Vue({
                el: '#app',
                data: {},
                methods: {
                    get() {
                        console.log(this.$refs.myh1.innerText) // hello world
                    }
                }
            });
        </script>
    

    相关文章

      网友评论

          本文标题:Vue中获取dom元素之ref

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