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 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.

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的说明的更多相关文章

  1. 7.3 Swift原始值

    //原始型是整型enumMethod:Int{caseAddcaseSubcaseMulcaseDiv}print("--------------->")//这个还是枚举值print(Method.Mul)//print(Method.Add.toRaw())print("--------------->")print(Method.Mul.rawValue)print(Method.Mul.ha

  2. swift – ‘Method’对于此上下文中的类型查找是不明确的,Alamofire中的错误

    我使用Alamofire的网络处理在swift和运行一个奇怪的错误。看起来我们不能通过Method枚举作为参数。[错误是在方法参数]您必须指定从哪个模块查找对象类型。

  3. 当我使用android.widget.RelativeLayout.setBackground时,NoSuchMethodError

    在android4.2我的应用程序工作正常,但是当我尝试使用android4.0.4测试它有这个消息错误:我使用setBackgroud添加一些动画,像这样的代码我有支持库添加到我的项目,我不知道如何解决这个,任何帮助将被apreciated!

  4. Java设计模式之模板方法模式Template Method Pattern详解

    在我们实际开发中,如果一个方法极其复杂时,如果我们将所有的逻辑写在一个方法中,那维护起来就很困难,要替换某些步骤时都要重新写,这样代码的扩展性就很差,当遇到这种情况就要考虑今天的主角——模板方法模式

  5. Vue中在data里面调用method方法的实现

    这篇文章主要介绍了Vue中在data里面调用method方法的实现,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

  6. IE7下ajax之open Method New的说明

    sMethod. Required.StringthatspecifiestheHTTPmethodusedtoopentheconnection:suchasGET,POST,orHEAD.Thisparameterisnotcase-sensitive.sUrl. Required.StringthatspecifieseithertheabsoluteorarelativeURLoftheXMLdataorserver-sideXMLWebservices.bAsync. Optional.Vari

  7. 详解iOS Method Swizzling使用陷阱

    这篇文章主要介绍了详解iOS Method Swizzling使用陷阱,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

  8. PyCharm:method may be static问题及解决

    这篇文章主要介绍了PyCharm:method may be static问题及解决方案,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

  9. 在没有循环或条件的情况下打印1到1000 – 在PHP中

    从here开始的想法–这次你只能使用PHP.这有可能吗?这是一个基于PHP重载的有趣oo解决方案:我很高兴我的解决方案如此受欢迎.这是一个略微改进,提供了一些模块化:

  10. php自动setter和getter

    我正在尝试为PHP对象实现一些自动getter和setter.我的目标是为每个属性自动拥有方法getproperty()和setProperty,这样如果没有为脚本将设置或获取值的属性实现该方法.一个例子,让自己清楚:要么关于如何实现这一点的任何想法/提示?如果要为任意属性模拟getXy和setXy函数,请使用magic__call包装器:通过添加类型映射或任何东西,这将是一次做有用的事情的好机会.否则完全避开gettersandsetters可能是明智之举.

随机推荐

  1. js中‘!.’是什么意思

  2. Vue如何指定不编译的文件夹和favicon.ico

    这篇文章主要介绍了Vue如何指定不编译的文件夹和favicon.ico,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

  3. 基于JavaScript编写一个图片转PDF转换器

    本文为大家介绍了一个简单的 JavaScript 项目,可以将图片转换为 PDF 文件。你可以从本地选择任何一张图片,只需点击一下即可将其转换为 PDF 文件,感兴趣的可以动手尝试一下

  4. jquery点赞功能实现代码 点个赞吧!

    点赞功能很多地方都会出现,如何实现爱心点赞功能,这篇文章主要为大家详细介绍了jquery点赞功能实现代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

  5. AngularJs上传前预览图片的实例代码

    使用AngularJs进行开发,在项目中,经常会遇到上传图片后,需在一旁预览图片内容,怎么实现这样的功能呢?今天小编给大家分享AugularJs上传前预览图片的实现代码,需要的朋友参考下吧

  6. JavaScript面向对象编程入门教程

    这篇文章主要介绍了JavaScript面向对象编程的相关概念,例如类、对象、属性、方法等面向对象的术语,并以实例讲解各种术语的使用,非常好的一篇面向对象入门教程,其它语言也可以参考哦

  7. jQuery中的通配符选择器使用总结

    通配符在控制input标签时相当好用,这里简单进行了jQuery中的通配符选择器使用总结,需要的朋友可以参考下

  8. javascript 动态调整图片尺寸实现代码

    在自己的网站上更新文章时一个比较常见的问题是:文章插图太宽,使整个网页都变形了。如果对每个插图都先进行缩放再插入的话,太麻烦了。

  9. jquery ajaxfileupload异步上传插件

    这篇文章主要为大家详细介绍了jquery ajaxfileupload异步上传插件,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

  10. React学习之受控组件与数据共享实例分析

    这篇文章主要介绍了React学习之受控组件与数据共享,结合实例形式分析了React受控组件与组件间数据共享相关原理与使用技巧,需要的朋友可以参考下

返回
顶部