中英
xmlhttprequest
  • 网络释义
  • 专业释义
  • 英英释义
  • 1

     对象

    ...1.什么是缓存问题? IE浏览器提供的AJAX对象(即XMLHttpRequest)在发送GET请求时,会首先检查是否访问过该地址,如果该地址已经访问过,那么浏览器不再向服务器发送请求,而是从缓存中取出数据展...

  • 2

     范例说明

    ... 8AjaXDebug工具 1XMLHttpRequest范例说明 1Plugins实例(一) ...

  • 3

     请求

    这个新对象可以接受对不同来源服务器的请求(XMLHttpRequest对象本身是不接受的),如果发现是对不同来源服务器的请求,在这个新对象的内部将URL转为相同来源服务器上的某个镜象URL。

  • 4

     正则表达式

    ... IIS 接口 xmlhttprequest 正则表达式 stream 采集 ...

短语
  • 双语例句
  • 1
    Try and create the XMLHttpRequest object.
    尝试创建XMLHttpRequest对象。
  • 2
    We simply send the XMLHttpRequest, as usual.
    只需照常发送 XMLHttpRequest。
  • 3
    Create an instance of the XMLHttpRequest object.
    创建一个XMLHttpRequest对象实例。
查看更多
  • 百科
  • XMLHTTPRequest

    XMLHttpRequest (XHR) is an API available to web browser scripting languages such as JavaScript. It is used to send HTTP or HTTPS requests to a web server and load the server response data back into the script. Development versions of all major browsers support URI schemes beyond http and https, in particular, blob URLs are supported.Data from the response can be used to alter the current document in the browser window without loading a new web page, and despite the name of the API, this data can be in the form of not only XML, but also JSON, HTML or plain text. The response data can also be evaluated by client-side scripting. For example, if it was formatted as JSON by the web server, it can be converted into a client-side data object for further use.The Ajax web development technique used by many websites to implement responsive and dynamic web applications depends on XMLHttpRequest.For security reasons, XMLHttpRequest requests follow the browser's same-origin policy, and will therfore only succeed if they are made to the same domain that served the original web page.

查看更多