久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

  • <legend id='IR0hZ'><style id='IR0hZ'><dir id='IR0hZ'><q id='IR0hZ'></q></dir></style></legend>

    <small id='IR0hZ'></small><noframes id='IR0hZ'>

        <bdo id='IR0hZ'></bdo><ul id='IR0hZ'></ul>

        <i id='IR0hZ'><tr id='IR0hZ'><dt id='IR0hZ'><q id='IR0hZ'><span id='IR0hZ'><b id='IR0hZ'><form id='IR0hZ'><ins id='IR0hZ'></ins><ul id='IR0hZ'></ul><sub id='IR0hZ'></sub></form><legend id='IR0hZ'></legend><bdo id='IR0hZ'><pre id='IR0hZ'><center id='IR0hZ'></center></pre></bdo></b><th id='IR0hZ'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='IR0hZ'><tfoot id='IR0hZ'></tfoot><dl id='IR0hZ'><fieldset id='IR0hZ'></fieldset></dl></div>
        <tfoot id='IR0hZ'></tfoot>

        與其他 Javascript 框架相比,為什么 jQuery 被如此廣

        Why is jQuery so widely adopted versus other Javascript frameworks?(與其他 Javascript 框架相比,為什么 jQuery 被如此廣泛地采用?)
            <tbody id='lTrFR'></tbody>
        • <legend id='lTrFR'><style id='lTrFR'><dir id='lTrFR'><q id='lTrFR'></q></dir></style></legend>
            1. <i id='lTrFR'><tr id='lTrFR'><dt id='lTrFR'><q id='lTrFR'><span id='lTrFR'><b id='lTrFR'><form id='lTrFR'><ins id='lTrFR'></ins><ul id='lTrFR'></ul><sub id='lTrFR'></sub></form><legend id='lTrFR'></legend><bdo id='lTrFR'><pre id='lTrFR'><center id='lTrFR'></center></pre></bdo></b><th id='lTrFR'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='lTrFR'><tfoot id='lTrFR'></tfoot><dl id='lTrFR'><fieldset id='lTrFR'></fieldset></dl></div>

              1. <small id='lTrFR'></small><noframes id='lTrFR'>

                  <bdo id='lTrFR'></bdo><ul id='lTrFR'></ul>
                  <tfoot id='lTrFR'></tfoot>
                  本文介紹了與其他 Javascript 框架相比,為什么 jQuery 被如此廣泛地采用?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我管理著一組程序員.我確實重視員工的意見,但最近我們對于在 Web 項目中使用哪個框架存在分歧.

                  I manage a group of programmers. I do value my employees opinion but lately we've been divided as to which framework to use on web projects.

                  我個人喜歡 MooTools,但我的一些團隊似乎想遷移到jQuery 因為它被更廣泛地采用.這本身不足以讓我允許遷移.

                  I personally favor MooTools, but some of my team seems to want to migrate to jQuery because it is more widely adopted. That by itself is not enough for me to allow a migration.

                  我同時使用了 jQueryMooTools.這篇特別的文章傾向于反映我對這兩個框架的看法.jQuery 非常適合 DOM 操作,但似乎僅限于幫助您做到這一點.

                  I have used both jQuery and MooTools. This particular essay tends to reflect how I feel about both frameworks. jQuery is great for DOM Manipulation, but seem to be limited to helping you do that.

                  功能方面,jQueryMooTools 可以輕松實現 DOM 選擇和操作:

                  // jQuery
                  $('#someContainer div[class~=dialog]')
                      .css('border', '2px solid red')
                      .addClass('critical');
                  
                  // MooTools
                  $('#someContainer div[class~=dialog]')
                      .setStyle('border', '2px solid red')
                      .addClass('critical');
                  

                  jQueryMooTools 允許輕松實現 AJAX:

                  // jQuery
                  $('#someContainer div[class~=dialog]')
                       .load('/DialogContent.html');
                  
                  // MooTools (Using shorthand notation, you can also use Request.HTML)
                  $('#someContainer div[class~=dialog]')
                       .load('/DialogContent.html');
                  

                  jQueryMooTools 可以輕松實現 DOM 動畫:

                  // jQuery
                  $('#someContainer div[class~=dialog]')
                      .animate({opacity: 1}, 500);
                  
                  // MooTools (Using shorthand notation, you can also use Fx.Tween).
                  $('#someContainer div[class~=dialog]')
                      .set('tween', {duration: 500}) 
                      .tween('opacity', 1);
                  

                  jQuery 提供以下附加功能:

                  jQuery offers the following extras:

                  • 龐大的支持者社區
                  • 插件庫
                  • 與微軟的 ASP.NET 和 VisualStudio 集成
                  • 由 Microsoft、Google 和其他公司使用

                  MooTools 提供以下附加功能:

                  MooTools offers the following extras:

                  • 帶有經典 OOP 模擬的面向對象的 JS 框架
                  • 擴展原生對象
                  • 本機功能支持的瀏覽器之間具有更高的一致性.
                  • 更輕松的代碼重用
                  • 被萬維網聯盟、Palm 等使用.

                  鑒于此,MooTools 似乎無所不能jQuery 做了很多事情(有些事情我在 jQuery 我可以在 MooTools) 但 jQuery 的學習曲線較小.

                  Given that, it seems that MooTools does everything jQuery does and more (some things I cannot do in jQuery and I can in MooTools) but jQuery has a smaller learning curve.

                  所以問題是,為什么您或您的團隊選擇 jQuery 而不是另一個 JavaScript框架?

                  So the question is, why did you or your team choose jQuery over another JavaScript framework?

                  注意:雖然我知道并承認 jQuery 是一個很棒的框架,還有其他選擇,我正在嘗試決定為什么 jQuery 應該是我們的選擇,而不是我們現在使用的 (MooTools)?p>

                  Note: While I know and admit jQuery is a great framework, there are other options around and I'm trying to take a decision as to why jQuery should be our choice versus what we use right now (MooTools)?

                  推薦答案

                  這是一個奇怪的問題...我的印象是...

                  That's an odd question... I get the impression that...

                  1. 您非常熟悉 mootools 并充分利用其 OOP 模型,從而使您的代碼更易于管理和支持.
                  2. 您意識到 jQuery 的目的有些不同,并且針對 DOM 操作和 AJAX 進行了調整,并且 mootools 確實可以完成 jQuery 所做的所有事情以及其他一些事情.
                  3. 聽起來好像您不需要以 3-rd 方插件的方式使用太多,這使得 jQuery 的受歡迎程度和支持變得不那么重要了.

                  底線,是炒作嗎?jQuery 正在變成像AJAX"、.NET 和 Web 2.0 這樣的神奇營銷流行語之一——這對他們來說非常棒,但是為什么 需要證明繼續使用對你如此有效的框架是合理的?還有一些我認為會涉及到的商業考慮:

                  Bottom line, is it the hype? jQuery is turning into one of these magical marketing buzzwords like 'AJAX', .NET and Web 2.0 — which is great for them but why do you need to justify staying with the framework that works so well for you? There's also the business considerations which I imagine will cover things like:

                  • 框架的壽命,或者 mootools 可能會在不斷增長的 jQuery 面前消失 - 非常值得懷疑,因為他們剛剛發布了 1.3 beta 1 并且有 2.0 正在準備在今年年底發布.
                  • 員工成本和他們的培訓(我想找到 mootools 程序員會比那些在簡歷/簡歷上打 jquery 的人更難).
                  • 在給定資源的情況下,在每個框架下維護和擴展系統所花費的時間(和成本).

                  這兩個框架都很棒,但我相信你的興趣最好還是留在 mootools 上.

                  Both frameworks are great but I believe your interests are best served in staying with mootools.

                  這篇關于與其他 Javascript 框架相比,為什么 jQuery 被如此廣泛地采用?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Browser waits for ajax call to complete even after abort has been called (jQuery)(即使在調用 abort (jQuery) 之后,瀏覽器也會等待 ajax 調用完成)
                  JavaScript innerHTML is not working for IE?(JavaScript innerHTML 不適用于 IE?)
                  XMLHttpRequest cannot load, No #39;Access-Control-Allow-Origin#39; header is present on the requested resource(XMLHttpRequest 無法加載,請求的資源上不存在“Access-Control-Allow-Origin標頭) - IT屋-程序員軟件開發技術分
                  Is it possible for XHR HEAD requests to not follow redirects (301 302)(XHR HEAD 請求是否有可能不遵循重定向 (301 302))
                  XMLHttpRequest 206 Partial Content(XMLHttpRequest 206 部分內容)
                  Restrictions of XMLHttpRequest#39;s getResponseHeader()?(XMLHttpRequest 的 getResponseHeader() 的限制?)
                      <tbody id='vSPS4'></tbody>
                        <legend id='vSPS4'><style id='vSPS4'><dir id='vSPS4'><q id='vSPS4'></q></dir></style></legend>

                        <i id='vSPS4'><tr id='vSPS4'><dt id='vSPS4'><q id='vSPS4'><span id='vSPS4'><b id='vSPS4'><form id='vSPS4'><ins id='vSPS4'></ins><ul id='vSPS4'></ul><sub id='vSPS4'></sub></form><legend id='vSPS4'></legend><bdo id='vSPS4'><pre id='vSPS4'><center id='vSPS4'></center></pre></bdo></b><th id='vSPS4'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='vSPS4'><tfoot id='vSPS4'></tfoot><dl id='vSPS4'><fieldset id='vSPS4'></fieldset></dl></div>

                          <tfoot id='vSPS4'></tfoot>

                        1. <small id='vSPS4'></small><noframes id='vSPS4'>

                          • <bdo id='vSPS4'></bdo><ul id='vSPS4'></ul>
                            主站蜘蛛池模板: 国产自产21区 | 三级特黄特色视频 | 日韩欧美精品一区 | 9999久久| 99亚洲精品 | 国产精品视频网站 | 紧缚调教一区二区三区视频 | 超碰在线网站 | 狠狠干狠狠插 | 国产欧美日韩综合精品一 | 一区在线播放 | 色在线免费视频 | 欧美在线视频一区二区 | 色又黄又爽网站www久久 | 精产国产伦理一二三区 | 99精品欧美一区二区蜜桃免费 | 国产大片一区 | 日日操夜夜操天天操 | 久久精品视频免费看 | 人人九九精 | 精品免费观看 | 中文字幕亚洲区一区二 | 九色视频网站 | 日本不卡一区二区三区在线观看 | 毛片在线免费 | 欧美性生活一区二区三区 | 夜夜精品浪潮av一区二区三区 | 91精品国模一区二区三区 | 99re在线| 国产精品久久国产精品99 | 成人欧美一区二区三区在线观看 | 日本视频中文字幕 | 国产精品国产精品国产专区不卡 | 国产在线一区观看 | 欧美舔穴 | 亚洲+变态+欧美+另类+精品 | 日韩免费视频一区二区 | 欧美日韩高清在线一区 | 在线免费观看日本视频 | 成人三级在线播放 | ww 255hh 在线观看|