|
采集前- 功能和encodeURI方法类似。
- /********************************************/
- xmlHTTP.setrequestheader("cache-control","no-cache");
- xmlHTTP.setrequestheader("Content-Type","application/x-www-form-urlencoded");
- xmlHTTP.setrequestheader("contentType","text/html;charset=uft-8")//指定发送数据的编码格式
- xmlHTTP.open ("post",url,true);
复制代码- 功能和encodeURI方法类似。
-
- /********************************************/
- xmlHTTP.setrequestheader(%26quot;cache-control%26quot;,%26quot;no-cache%26quot;);
- xmlHTTP.setrequestheader(%26quot;Content-Type%26quot;,%26quot;application/x-www-form-urlencoded%26quot;);
- xmlHTTP.setrequestheader(%26quot;contentType%26quot;,%26quot;text/html;charset=uft-8%26quot;)//指定发送数据的编码格式
- xmlHTTP.open (%26quot;post%26quot;,url,true);
复制代码 在线发布后就成了上面这样
[ 本帖最后由 kendy 于 2008-5-9 20:29 编辑 ] |
|