在我們日常開發工作中,我們對jQuery的使用必不可少,那麼在jQuery中extend()的使用相信很多小伙伴都會用到的吧,那我們今天就給大家來詳細介紹下關於jQuery中關於extend()的使用總結!
jQuery為開發外掛程式提拱了兩個方法,分別是:
jQuery.fn.extend(object); jQuery.extend(object);
jQuery.extend(object);為擴充jQuery類別本身.為類別新增新的方法。
jQuery.fn.extend(object);為jQuery物件新增方法。這個應該很好理解吧。舉個例子。
程式碼如下:
<span style="font-size:18px;"><html> <head> <title></title> </head> <body> <h3 class="ye">new soul</h3> <h3 class="ye">new soul</h3> <h3 class="ye">new soul</h3> <h3 class="ye">new soul</h3> <script type="text/javascript" src="jquery.2.0.3.js"></script> <script type="text/javascript"> jQuery.fn.myPlugin = function(options) { $options = $.extend( { html: "no messages", css: { "color": "red", "font-size":"14px" }}, options); return $(this).css({ "color": $options.css.color, }).html($options.html); } $('.ye').myPlugin({html:"So easy,yes?",css:{"color":"green","font-size":"20px"}}); </script> </body> </html> </span>
好的,上面你也看到了一點點$.extend()的用法。
1.合併多個物件。
這裡使用的就是$.extend()的嵌套多個物件的功能。
所謂嵌套多個對象,有點類似數組的合併的操作。
但是這裡是物件。舉例說明。
程式碼如下:
<span style="font-size:18px;">//用法: jQuery.extend(obj1,obj2,obj3,..) var Css1={size: "10px",style: "oblique"} var Css2={size: "12px",style: "oblique",weight: "bolder"} $.jQuery.extend(Css1,Css2) //结果:Css1的size属性被覆盖,而且继承了Css2的weight属性 // Css1 = {size: "12px",style: "oblique",weight: "bolder"} </span>
2.深度嵌套物件。
程式碼如下:
<span style="font-size:18px;"> jQuery.extend( { name: “John”, location: { city: “Boston” } }, { last: “Resig”, location: { state: “MA” } } ); // 结果: // => { name: “John”, last: “Resig”, location: { state: “MA” } } // 新的更深入的 .extend() jQuery.extend( true, { name: “John”, location: { city: “Boston” } }, { last: “Resig”, location: { state: “MA” } } ); // 结果 // => { name: “John”, last: “Resig”, // location: { city: “Boston”, state: “MA” } } </span>
3.可以為jQuery新增靜態方法。
程式碼如下:
<span style="font-size:18px;"><html> <head> <title></title> </head> <body> <script type="text/javascript" src="jquery.2.0.3.js"></script> <script type="text/javascript"> $.extend({ add:function(a,b){return a+b;}, minus:function(a,b){return a-b}, multiply:function(a,b){return a*b;}, pide:function(a,b){return Math.floor(a/b);} }); var sum = $.add(3,5)+$.minus(3,5)+$.multiply(3,5)+$.pide(5,7); console.log(sum); </script> </body> </html> </span>
總結:
本文透過實例的詳細介紹為大家介紹了jQuery中extend()的使用、相信小夥伴們對extend的使用理解更為了解、希望對你的工作有所幫助!
相關推薦:
################有關jQuery.extend函數的用法實例詳解#################################################################################### #以上是jQuery中關於extend()的使用總結的詳細內容。更多資訊請關注PHP中文網其他相關文章!