Jquery Plugin $ & $.fn

Source: Internet
Author: User

Jquery.extend (object); To extend the jquery class itself. Adds a new method to the class.
JQuery.fn.extend (object); Adds a method to a jquery object.

<div id= "Mydiv" ></div>
(function ($) {
$.fn.extend ({
Test:function () {
Alert ($ (this). attr (' id '));
}
})
}) (JQuery)

$ (' #myDiv '). Test ();
Print out: mydiv

(function ($) {
$.extend ({
Test:function () {
Alert (' 111 ');
}
})
}) (JQuery)
$.test ();
Print out: 111

The former is a plug-in that is bound to a page element, which is a plug-in that is bound to jquery.

EG:

<body>

<script type= "Text/javascript" src= "Js/jquery-1.8.2.min.js" charset= "gb2312" ></script>

<script type= "Text/javascript" >

$.fn.myplugin = function (DEWDWD) {

_options = $.extend ({

HTML: "Nothing",

CSS: {

"Color": "Red",

"FontSize": "12px",

}

},DEWDWD);

return $ (this). CSS ({color: _options.css.color,fontsize: _options.css.fontsize}). html (_options.html);

}

$ ('. Ye '). Myplugin ({html: "So easy, a sandy place?", Css:{color: "Green", FontSize: "20px"});

</script>

</body>

Eegg:tab 3d

Jquery Plugin $ & $.fn

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.