您现在的位置是:网站首页> 编程资料编程资料
IE7下ajax之open Method New的说明_AJAX相关_
2023-05-25
2806人已围观
简介 IE7下ajax之open Method New的说明_AJAX相关_
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
相关内容
- 一个简单的ASP+AJAX留言本源码下载_AJAX相关_
- AJAX防止页面缓存的代码_AJAX相关_
- .NET2.0环境下的Ajax选型和应用(提供Demo源码下载)_AJAX相关_
- Ajax案例集下载:新增分页查询案例(包括《Ajax开发精要》中的两个综合案例) 下载_AJAX相关_
- AJAX和JSP实现的基于WEB的文件上传的进度控制代码第1/2页_AJAX相关_
- DWR util.js 学习笔记 整理_AJAX相关_
- 强烈推荐 - Ajax 技术资源中心_AJAX相关_
- ajax视频课件 在线观看地址_AJAX相关_
- Ajax in action 英文版配书源码 下载_AJAX相关_
- Ajax实现无刷新三联动下拉框_AJAX相关_
are supported:
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.
