Home > Web Front-end > JS Tutorial > body text

Detailed explanation of the steps for vue1 and vue2 to obtain dom elements

php中世界最好的语言
Release: 2018-05-10 14:04:14
Original
2142 people have browsed it

This time I will bring you a detailed explanation of the steps for vue1 and vue2 to obtain dom elements. What are the precautions for vue1 and vue2 to obtain dom elements. The following is a practical case, let's take a look.

vue1.*In version

Add el='dom' to the tag, and then add this.$els.dom in the code In this way, you get the page element

For example:

Hello

Make your good color appear in red: this.$els.my-box.style.color = 'red'

##vue2.*version

Add ref='dom' in the tag, and then add this.$refs.dom in the code to get the page element

For example:

Hello

Make the color of Hello appear red: this.$refs.myBox.style. color = 'red

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Detailed explanation of the steps to add events to dynamically created elements using JS

How to operate the vue function calling sequence

The above is the detailed content of Detailed explanation of the steps for vue1 and vue2 to obtain dom elements. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!