如何使用jquery加载外部http xml请求?
下面是粘贴到像firefox这样的网络浏览器中的网址,会显示一个xml文档。
这适用于CPanel XML API。
http://hostingz.org:2086/xml-api/createacct?username=WeAreWatching&plan=hostingz_FH5&ip=n&cpmod=x3&password=changeme&contact email=contact.wearewatching@gmail.com& domain = thewawblog& useregns = 0& reseller = 0
如何在jquery中完成此工作?
<head>
<script type="text/javascript">
$(document).ready(function(){
$.ajax({
type: "GET",
url: "http://hostingz.org:2086/xml-api/createacct",
dataType: "html",
success: function(xml) {
$("#final").append("<img src=\"icons/tick.png\" align=\"left\">Account Creation Successful!<br>The free account was created successfully!!<br><br>The account details have been sent to the email.<br><br>");
}
});
});
</script>
</head>
答案 0 :(得分:1)
这是关于使用代理的more info。
答案 1 :(得分:0)
浏览器拒绝访问外部网站以防止跨站点脚本。您可以使用Google API发出此类请求,也可以使用服务器端代码。