Using jQuery Correctly with Vue
Using jQuery in Vue has become a trend, because it allows us to manipulate DOM elements more conveniently and provides some practical tool functions. In this article, we will introduce in detail how to use jQuery in Vue and provide some examples to help you better understand it.
1. Introducing jQuery
Before using jQuery, we need to import it first. In Vue, we can import jQuery in the index.html file or in the main.js file. The following is the sample code:
index.html
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
main.js
import $ from 'jquery' Vue.prototype.$ = $
Both of these methods allow us to use jQuery in Vue, but the way of introducing it is different.
2. Using jQuery
After importing jQuery, we can use it in Vue. Here are some common uses:
1. Select the element
jQuery's selector makes it easy to select DOM elements. For example, if we want to select the element with the id app, we can write:
javascript Copy Codes
let app = $('#app')
2. Operation elements
jQuery methods can be used to easily manipulate DOM elements. For example, if we want to add a p tag to the element with the id app, we can write:
javascript Copy Codes
$('#app').append('<p>Hello World</p>')
3. Event Binding
jQuery's event binding makes it easy to bind events. For example, if we want to bind a click event to an element with the id app, we can write:
javascript Copy Codes
$('#app').on('click', function() { console.log('clicked') })
3. Examples in Vue
Below are some examples to help you better understand how to use jQuery with Vue.
1. Binding events
In Vue, we can use @click
binding events or jQuery's event binding. Here is the sample code:
<template>
<div id="app">
<button @click="add">Vue</button>
<button id="jquery">jQuery</button>
</div>
</template>
<script>
export default {
methods: {
add() {
console.log('Vue clicked')
}
},
mounted() {
$('#jquery').on('click', function() {
console.log('jQuery clicked')
})
}
}
</script>
In this example, we bind the click events of two buttons, one using Vue's @click and the other using jQuery's event binding.
2. Operation elements
In Vue, we can use ref
to get DOM elements, or we can use jQuery's selector to get DOM elements. The following is the sample code:
<template>
<div id="app">
<div ref="box"></div>
</div>
</template>
<script>
export default {
mounted() {
let box = $(this.$refs.box)
box.html('<p>Hello World</p>')
}
}
</script>
In this example, we use ref
to get the element with id box and use jQuery's html method to add a p tag to it.
3. Utility Functions
In Vue, we can use some utility functions to easily manipulate DOM elements, or we can use jQuery's utility functions. Here is the sample code:
<template>
<div id="app">
<input ref="input" type="text">
<button @click="focus">Focus</button>
</div>
</template>
<script>
export default {
methods: {
focus() {
$(this.$refs.input).focus()
}
}
}
</script>
In this example, we use ref
to get the input element, and use jQuery's focus method to give the input element focus.
Summarize
Using jQuery in Vue allows us to manipulate DOM elements more conveniently, and provides some practical tool functions. Before using jQuery, we need to import it first. jQuery's selector can easily select DOM elements, jQuery's method can conveniently manipulate DOM elements, and jQuery's event binding can conveniently bind events. In Vue, we can use ref
to get DOM elements, or we can use jQuery's selector to get DOM elements. Finally, we can also use jQuery's tool functions to conveniently manipulate DOM elements.
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Related Articles
Webpack packages ES6 and CommonJs mixed React
Publish Date:2025/03/02 Views:179 Category:React
-
This article mainly introduces how to use webpack to package and compile React mixed with ES6 and CommonJs. It is a process of upgrading the React environment.
Details that need to be paid attention to when compiling react with webpack
Publish Date:2025/03/02 Views:199 Category:React
-
It is very convenient to compile and package react using webpack. Both need to be installed using npm. However, if you do not pay attention to the installation location of webpack and react parser babel during use, problems will occur during
How to scroll to the top or bottom of the page in Vue.js
Publish Date:2025/03/01 Views:96 Category:Vue
-
Vue.js is a popular front-end framework that helps developers build efficient and maintainable applications. In Vue.js, scrolling the page to the top or bottom is a common requirement. In this article, we will introduce how to implement this
Display element or text on mouse hover in vue
Publish Date:2025/03/01 Views:179 Category:Vue
-
Vue.js is a popular JavaScript framework that makes web application development easier and more efficient. In this tutorial, we will learn how to use Vue.js to display an element or text on mouse hover. This tutorial will cover the following
When watching an object in Vue, how to exclude certain properties from being watc
Publish Date:2025/03/01 Views:125 Category:Vue
-
When using watch in Vue, you may need to monitor an object, but only care about certain properties in the object, not all properties of the object. In this case, you can use deep monitoring and calculated properties, or add some options to w
What is the use of the immediate property of watch in Vue?
Publish Date:2025/03/01 Views:67 Category:Vue
-
In Vue, watch is a way to perform asynchronous tasks or trigger responsive dependencies when data changes. In most cases, watch will be delayed by default. This means that the watch will only be triggered when the value being monitored chang
Setting up checkbox functionality in Vue
Publish Date:2025/03/01 Views:186 Category:Vue
-
In Vue, checkboxes are a very common interactive component that allows users to select multiple options. This article will introduce how to set up checkbox functionality in Vue and provide some practical examples.
What happens if a child component changes the data in props in Vue?
Publish Date:2025/03/01 Views:140 Category:Vue
-
In Vue, when a child component changes the data in props, it will cause the responsiveness of the parent component and other child components to change. First, you need to understand that props is a way to pass data from a parent component t
How to refresh the page in Vue
Publish Date:2025/03/01 Views:91 Category:Vue
-
Vue is a popular JavaScript framework that provides many convenient tools and methods for building web applications. In Vue, page updates are usually achieved through data binding and responsive systems. But sometimes you need to refresh the