gpt4 book ai didi

javascript - 使用ajax读取渲染html的php文件

转载 作者:行者123 更新时间:2023-11-28 20:12:20 25 4
gpt4 key购买 nike

我只是想读取 URL 的渲染 HTML 的文件内容

这里我正在使用的代码,它总是出现在错误部分。

  $.ajax({
type: 'POST',
url: 'http://www.withholding32.com/api/wh32calc.php?userid=nick&fpp=12&ffs=Single&fa=0&fgp=6000&figp=0&fiytd=0&st=6&stp=6000&ss=Single&sa=0&sad=0&stca=0',
dataType: 'html',
success: function(data) {
alert('success');
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert('error');
}
});

但如果我直接在浏览器中运行相同的网址,它会显示 html。

here is url

最佳答案

工作 DEMO

您可以在 head 标签中使用它

<script src="https://rawgithub.com/IonicaBizau/jQuery-cross-domain-requests/master/js/jquery.xdomainajax.js">
</script>

代码

$.ajax({
url: 'http://www.withholding32.com/api/wh32calc.php?userid=nick&fpp=12&ffs=Single&fa=0&fgp=6000&figp=0&fiytd=0&st=6&stp=6000&ss=Single&sa=0&sad=0&stca=0', // Or your web page link
type: 'GET',
success: function(res) {
var headline = res.responseText;
$('body').append(headline);
}
});

希望对您有帮助,谢谢

关于javascript - 使用ajax读取渲染html的php文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19703218/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com