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

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

    <tfoot id='x1xF7'></tfoot>

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

    1. <legend id='x1xF7'><style id='x1xF7'><dir id='x1xF7'><q id='x1xF7'></q></dir></style></legend>

      1. 為什么叫 XMLHttpRequest?

        Why is it called XMLHttpRequest?(為什么叫 XMLHttpRequest?)

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

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

              <tbody id='Cu4q6'></tbody>
            <legend id='Cu4q6'><style id='Cu4q6'><dir id='Cu4q6'><q id='Cu4q6'></q></dir></style></legend>
              • <bdo id='Cu4q6'></bdo><ul id='Cu4q6'></ul>
                • <tfoot id='Cu4q6'></tfoot>
                  本文介紹了為什么叫 XMLHttpRequest?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我一直想知道為什么這個對象被這樣稱呼?

                  I always wonder why this object is called like that?

                  您的請求正文不需要是 XML 格式.此外,從服務器接收的數據可以以 JSON、XML、HTML 或純文本的形式獲取.XML 在這個對象中并不重要.這是某種陳詞濫調嗎?這個對象最初創建時是什么?

                  The body of your request does not need to be in XML format. Also, data received from server can be fetched as JSON, XML, HTML, or plain text. XML does not play an essential part in this object. Is this some kind of a cliché? What is this object used to be when it was first created?

                  推薦答案

                  XMLHttpRequest 是由 Microsoft 的 Outlook Web Access 團隊發明的.這個高度創新的團隊之前給了我們遠程腳本,這是AJAX"風格開發的開始.遠程腳本類似于 JSONP,但過于復雜(它使用 Java 小程序,最重要的是).我不記得是否可以在 IE 4 或 5 中動態注入 <script> 元素,但這似乎是不可能的.否則,JSONP 似乎足夠強大,可以消除對 XMLHttpRequest 的需求.

                  XMLHttpRequest was invented by Microsoft's Outlook Web Access team. This highly innovative team previously gave us remote scripting, which was the the beginning of "AJAX" style development. Remote scripting was like JSONP, but overly complicated (it used a Java applet, of all things). I don't remember whether it was possible to dynamically inject <script> elements in IE 4 or 5, but it seems like that wasn't possible. Otherwise, JSONP seems powerful enough to eliminate the need for XMLHttpRequest.

                  Outlook 團隊正在將 XML 從服務器傳輸到客戶端,因此命名 ActiveX 控件以反映其當時的主要用途.它被包含在 MSXML 解析器中.

                  The Outlook team was transferring XML from server to client, so the ActiveX control was named to reflect its primary use at the time. It was included as part of the MSXML parser.

                  當 Firefox 進入游戲并實現他們自己的版本時,XMLHttpRequest 的使用更像今天,而用于 XML 的則更少,但 Firefox 還是使用了相同的名稱.由于兩家最大的瀏覽器制造商創建了一個具有相同名稱、界面和功能的對象,w3c 堅持使用現有名稱.太糟糕了,有人沒有對這個誤稱更惡毒,并堅持我們稱它為更準確的東西,比如 HttpRequest.

                  By the time Firefox got in on the game and implemented their own version, XMLHttpRequest was being used more like it is today, and less for XML, but Firefox used the same name anyway. With the two biggest browser makers creating an object with the same name, interface, and functionality, the w3c stuck with the existing name. It's too bad someone didn't make more of a stink about the misnomer and insist we call it something more accurate like just HttpRequest.

                  我不知道AJAX"是如何或為什么成為一個流行的術語來描述網頁與服務器交互而不需要完整的頁面加載的編程風格.與XMLHttpRequest"相比,AJAX"用詞不當,因為它不僅暗示 XML 是一個重要方面,而且還沒有提供服務器交互的指示.我可以使用 JavaScript 異步處理 XML,而無需與服務器通信.

                  I don't know how or why "AJAX" became the popular term to describe the programming style where a web page interacts with the server without requiring a complete page load. "AJAX" is a worse misnomer than "XMLHttpRequest" since it not only implies XML is an essential aspect, but further provides no indication of server interaction. I can process XML with JavaScript asynchronously without ever communicating with a server.

                  這篇關于為什么叫 XMLHttpRequest?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持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))
                  NETWORK_ERROR: XMLHttpRequest Exception 101(NETWORK_ERROR:XMLHttpRequest 異常 101)
                  XMLHttpRequest 206 Partial Content(XMLHttpRequest 206 部分內容)

                    <tfoot id='rUfH3'></tfoot>

                    <legend id='rUfH3'><style id='rUfH3'><dir id='rUfH3'><q id='rUfH3'></q></dir></style></legend>

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

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

                              <tbody id='rUfH3'></tbody>
                            主站蜘蛛池模板: 成人在线观看免费爱爱 | 人人干人人爽 | 精品视频一区二区三区在线观看 | 国产日韩欧美 | 婷婷丁香在线视频 | 亚洲精选一区二区 | 久久国产精品视频免费看 | 亚洲一区二区三区免费在线观看 | 91传媒在线观看 | 亚洲国产中文字幕 | 国产一区二区三区四区 | 91精品国产色综合久久 | 久久精品一级 | 久久久xx | 国内精品一区二区 | 韩日一区二区 | 免费在线观看黄视频 | 国产精品区一区二 | 亚洲欧美一区二区三区视频 | 亚洲第一区久久 | av一级在线观看 | 日韩欧美国产不卡 | 欧美在线亚洲 | 亚洲精品一区久久久久久 | 亚洲欧洲精品成人久久奇米网 | 国产精品视频一二三区 | 亚洲欧洲在线视频 | 欧美1区| 在线免费观看日本视频 | 欧美精品在线免费观看 | 在线永久看片免费的视频 | 日韩中文在线 | 黑人巨大精品 | 欧美黑人一区 | 91免费视频| 日韩欧美在线一区 | 中文成人在线 | 一区二区三区高清不卡 | 成人av网站在线观看 | 丁香一区二区 | 亚洲国产精品一区二区久久 |