Home > Article > Web Front-end > Conversion between JavaScript objects jQuery objects and original DOM_jquery
$("#test") //jQuery object
$("#test")[0] //jQuery object->native DOM object
$($("#test")[0]) //DOM object->jQuery object (a bit convoluted, but as long as you understand that using $() you can encapsulate the native DOM object into a jQuery object)