jquery knowledge Point one jquery's ready and Dom's onload difference _jquery

Source: Internet
Author: User
Therefore, the ready of jquery can improve the response speed of the Web page;
Jquery:ready's standard wording:
Copy Code code as follows:

$ (document). Ready (function () {
Alert ("Load End");
});

A $ (document) converts the document of a DOM object into a jquery object, which can then invoke the JQuery method ready (), because the DOM object is not able to invoke the jquery method, although their relationship is very intimate;
Short form of Jquery:ready:
Copy Code code as follows:

$ (function () {
Alert ("Load End");
});

One of the main functions of the Ready function is to register events for DOM objects:
Copy Code code as follows:

<! DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 transitional//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
<title></title>
& Lt;script src= ". /myjs/jquery-1.4.2.js "type=" text/javascript ></script>
<script type = "Text/javascript" >
$ ( function () {
$ ("#clickme"). Click (function () {
Alert ("I was clicked on");
});
});
</script>
<body>
<input type = "button" id= "clickme" value = "click me"/>
</body>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.