IE7下ajax之open Method New的说明

发布时间:2022-04-17 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了IE7下ajax之open Method New的说明脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
oPEn Method Assigns method, destination URL, and other optional attributes of a pending request.
Syntax
XMLHttPRequest.open(sMethod, sUrl [, bAsync] [, SUSEr] [, sPassword])[/pre]
Parameters
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.
Return Value
No return value.
Remarks
open was introduced in internet Explorer 7.
The following HTTP verbs and World Wide Web Distributed Authoring and Versioning (WebDAV) methods

IE7下ajax之open Method New的说明.COM/en-us/library/ms536648.leave-site%28en-us,VS.85%29.gif');" src="http://msdn2.microsoft.com/en-us/library/ms536648.leave-site%28en-us,VS.85%29.gif" onload="if(this.width>

'700')this.width='700';if(this.height>'700')this.height='700';" border="0"> are supported:
  • GET
  • POST
  • HEAD
  • PUT
  • DELETE
  • MOVE
  • PROPFIND
  • PROPPATCH
  • MKCOL
  • COPY
  • LOCK
  • UNLOCK
  • OPTIONS
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.

IE7下ajax之open Method New的说明 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.

Applies To
XMLHttpRequest
See Also
abort, onreadystatechange

脚本宝典总结

以上是脚本宝典为你收集整理的IE7下ajax之open Method New的说明全部内容,希望文章能够帮你解决IE7下ajax之open Method New的说明所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:Method