मैं एक उदाहरण दे रहा हूं जो यहां दूसरों द्वारा दिए गए बिंदुओं की व्याख्या करता है। निम्नलिखित कोड पर विचार करें
<div id="example">
Some text
<div>Another div</div>
<!--A comment-->
</div>
और इसी js कोड,
$(document).ready(function() {
var div = $("#example").get(0);
console.log(typeof(div));
console.log(div);
console.log("XXXXXXXXX");
var div_eq=$('#example').eq(0);
console.log(typeof(div_eq));
console.log(div_eq);
});
आप यह देख पाएंगे
object
excercise1.js (line 5)
<div id="example">
excercise1.js (line 6)
XXXXXXXXX
excercise1.js (line 7)
object
excercise1.js (line 9)
Object[div#example]
पहला एक DOM ऑब्जेक्ट है जबकि बाद वाला एक Jquery-लपेटा हुआ ऑब्जेक्ट है जहाँ आप Jquery तरीके कह सकते हैं