IE7下ajax之open Method New的說(shuō)明
更新時(shí)間:2007年06月10日 00:00:00 作者:
open Method Assigns method, destination URL, and other optional attributes of a pending request.
Syntax
Syntax
XMLHttpRequest.open(sMethod, sUrl [, bAsync] [, sUser] [, sPassword])[/pre]Parameters
Return Value
sMethod Required. String that specifies the HTTP method used to open the connection: such as GET, POST, or HEAD. This parameter is not case-sensitive. sUrl Required. String that specifies either the absolute or a relative URL of the XML data or server-side XML Web services. bAsync Optional. Variant that specifies true for asynchronous operation (the call returns immediately), or false otherwise. If true, assign a callback handler to the onreadystatechange property to determine when the call has completed. If not specified, the default is true. sUser Optional. Variant that specifies the name of the user for authentication. If this parameter is null ("") or missing and the site requires authentication, the component displays a logon window. sPassword Optional. Variant that specifies the password for authentication. This parameter is ignored if the user parameter is null ("") or missing.
No return value.Remarks
open was introduced in Internet Explorer 7.Applies To
The following HTTP verbs and World Wide Web Distributed Authoring and Versioning (WebDAV) methodsare supported:
Microsoft Internet Explorer caches the results of HTTP GET requests in the Temporary Internet Files (TIF) folder. In most cases, caching improves performance for data that will not change frequently. To guarantee that the results are not cached, use POST.
- GET
- POST
- HEAD
- PUT
- DELETE
- MOVE
- PROPFIND
- PROPPATCH
- MKCOL
- COPY
- LOCK
- UNLOCK
- OPTIONS
Security Alert Cross-domain, cross-port, and mixed protocol requests are not allowed. The sUrl parameter may only specify XML data files in the same domain, using the same port and protocol method, as that from which the page is served. Although this method accepts credentials passed via parameter, those credentials are not automatically sent to the server on the first request. The sUser and sPassword parameters are not transmitted unless the server challenges the client for credentials with a 401 - Access Denied response.
After calling this method, use send to send the request and data, if any, to the server.
See Also
XMLHttpRequest
abort, onreadystatechange
相關(guān)文章
ajax加載頁(yè)面服務(wù)器返回 304 not modified
服務(wù)器都返回 304 not modified 說(shuō)明在服務(wù)器上,你這個(gè)xml文件沒(méi)有修改過(guò),或者要加載的頁(yè)面在本地沒(méi)有被修改,本地緩存造成了這個(gè)問(wèn)題2014-04-04ajax內(nèi)部值外部調(diào)用不了的原因及解決方法
下面小編就為大家?guī)?lái)一篇ajax內(nèi)部值外部調(diào)用不了的原因及解決方法。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2016-06-06jQuery Ajax使用心得詳細(xì)整理及注意事項(xiàng)
jQuery Ajax相關(guān)文章想必大家在網(wǎng)上面已經(jīng)看到了很多,本文主要目的是整理jQuery Ajax相關(guān)內(nèi)容,感興趣的朋友可以了解下,或許本文對(duì)你有所幫助2013-02-02基于fileUpload文件上傳帶進(jìn)度條效果的實(shí)例(必看)
下面小編就為大家?guī)?lái)一篇基于fileUpload文件上傳帶進(jìn)度條效果的實(shí)例(必看)。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2017-06-06使用Ajax實(shí)現(xiàn)進(jìn)度條的繪制
這篇文章主要介紹了如何利用Ajax繪制進(jìn)度條,文中的示例代碼講解詳細(xì),對(duì)我們的學(xué)習(xí)或工作有一定的幫助,感興趣的小伙伴可以了解一下2022-04-04PHP Ajax實(shí)現(xiàn)頁(yè)面無(wú)刷新發(fā)表評(píng)論
PHP Ajax實(shí)現(xiàn)頁(yè)面無(wú)刷新發(fā)表評(píng)論...2006-12-12ajax+php 谷歌搜索框自動(dòng)填充功能 實(shí)例代碼
應(yīng)用Ajax技術(shù) 結(jié)合php語(yǔ)言寫(xiě)的簡(jiǎn)單的類谷歌搜索框自動(dòng)填充功能。2009-11-11