组件返回失败代码:0x80004005

时间:2011-02-22 08:26:35

标签: html ajax exception mozilla

我正在尝试使用计算机上的HTML文件发送“获取”AJAX请求,但以下代码在Mozilla浏览器上返回“组件返回失败代码:0x80004005”异常。

xmlhttp.open("GET","http://180.92.172.157/SMS-API/SMS-Push.aspx?UserName="+Username+"&Password="+Password+"&mobile="+Mobile+"&SenderName="+SenderName,false);
xmlhttp.send();
alert("HELLO");  

有谁能告诉我我在做什么?

2 个答案:

答案 0 :(得分:1)

请仔细阅读:https://developer.mozilla.org/En/HTTP_access_control

快速Google似乎指出了一种防止跨站点脚本编写的安全功能。

答案 1 :(得分:0)

这是跨浏览器问题。 删除http或https并尝试它将起作用

您可以查看此链接

http://tharindumathew.com/2012/05/16/xml-parsing-error-in-firebug/