菜单
  

    encodeURIComponent(arg1)=encodeURIComponent(value1)&encodeURIComponent(arg2)=encodeURIComponent(value2)&…。。

     

    注: encodeURIComponent 返回一个包含了 charstring 内容的新的 String 对象(Unicode 格式), 所有空格、标点、重音符号以及其他非 ASCII 字符都用 %xx 编码代替,其中 xx 等于表示该字符的十六进制数。 例如,空格返回的是 “%20” 。 字符的值大于 255 的用 %uxxxx 格式存储。参见 JavaScript 的 encodeURIComponent() 方法。

     

    在了解了上面的内容后我们现在用ajax的XMLHttpRequest对象向服务器分别用GET和POST方式发送一些数据。

     

    GET 方式

    var postContent =”name=” + encodeURIComponent(“xiaocheng”) + “&email=” + encodeURIComponent(“xiaochengf_21@yahoo。com。cn”);

    xmlhttp。open(“GET”, “somepage” + “?” + postContent, true);

    xmlhttp。send(null);

     

    POST 方式

     

    var postContent =”name=” + encodeURIComponent(“xiaocheng”) + “&email=” + encodeURIComponent(“xiaochengf_21@yahoo。com。cn”);

    xmlhttp。open(“POST”, “somepage”, true);

    xmlhttp。setRequestHeader(“Content-Type”, “application/x-www-form-urlencoded”);

    //xmlhttp。setRequestHeader(“Content-Type”, “text/xml”); //如果发送的是一个xml文件

    xmlhttp。send(postContent);


  1. 上一篇:s2-045代码执行漏洞分析s2-045
  2. 下一篇:textarea换行符如何实现换行
  1. 未来10年最好的行业,未来...

  2. 未来10年最吃香的行业洧哪...

  3. 未来10年最吃香的生意,茬...

  4. 未来10年创业前景最好的行...

  5. 未来10年什么行业前景好最...

  6. 未来10大暴利行业 今年最...

  7. 未成年赚钱最快的软件又...

  8. 街头游园设计

  9. Toeplitz定理及其应用+文献综述

  10. 从何红舟《桥上的风景》中感受油画构成美

  11. 货币国际化国内外研究现状

  12. 玫瑰精油特征香气成分研究

  13. 甲硫醇钠生产工艺设计任务书

  14. 运动员广告形象塑造文献综述和参考文献

  15. 进出口贸易与经济增长文献综述和参考文献

  16. 身体自尊量表(PSPP)

  17. 多级反馈队列调度算法的研究+源代码

  

About

优尔论文网手机版...

主页:http://www.youerw.com

关闭返回