搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

XMLHttpRequest with "post" does not work (parameters are not passed to called routine); same code works in Chrome and IE.

  • 2 回覆
  • 6 有這個問題
  • 15 次檢視
  • 最近回覆由 Hasan

more options

Here is my code:

function evalCtr(Ctr)
{
var xxxhttp;
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xxxhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xxxhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xxxhttp.onreadystatechange=function()
  {
  if (xxxhttp.readyState==4 && xxxhttp.status==200)
    {
    alert(xxxhttp.responseText);
    }
  }
var params = "oper=XXX&Center=YYY";
xxxhttp.open("post","c_ctr.cfm",true);
xxxhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xxxhttp.setRequestHeader("Content-length", params.length)
xxxhttp.setRequestHeader("Connection", "close");

xxxhttp.send(params);
}
Here is my code:<br /> <br /> <pre><nowiki>function evalCtr(Ctr) { var xxxhttp; if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xxxhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xxxhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xxxhttp.onreadystatechange=function() { if (xxxhttp.readyState==4 && xxxhttp.status==200) { alert(xxxhttp.responseText);   } } var params = "oper=XXX&Center=YYY"; xxxhttp.open("post","c_ctr.cfm",true); xxxhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded"); xxxhttp.setRequestHeader("Content-length", params.length) xxxhttp.setRequestHeader("Connection", "close"); xxxhttp.send(params); }</nowiki></pre>

由 cor-el 於 修改

所有回覆 (2)

more options

A good place to ask questions and advice about web development is at the mozillaZine Web Development/Standards Evangelism forum.
The helpers at that forum are more knowledgeable about web development issues.
You need to register at the mozillaZine forum site in order to post at that forum.

See http://forums.mozillazine.org/viewforum.php?f=25

more options

Troubleshooting extensions and themes

Check and tell if its working.