我正在尝试使用以下 API 获取实时汇率。
"http://www.exchangerate-api.com/INR/USD/1?k=FQRxs-xT2tk-NExQj"
当我点击一个按钮时,它会提醒费率并且工作得很好。我正在使用以下 Ajax 代码。
<script type="text/javascript" language="javascript">
function testCurrencyRate()
{
$.ajax({
datatype:"html",
type: "GET",
url: "ajax/LiveCurrencyRate.php",
data: "t="+new Date().getTime(),
success: function(response)
{
alert(response);
},
error: function(e)
{
alert('Error while fetchig the live currency rate.');
}
});
}
</script>
Ajax 请求转到LiveCurrencyRate.php
如下页面。
$url="http://www.exchangerate-api.com/INR/USD/1?k=FQRxs-xT2tk-NExQj";
$result = file_get_contents($url);
echo $result;
并且<form></form>
其中包含唯一的按钮,单击该按钮会在此 URL 上发出 Ajax 请求ajax/LiveCurrencyRate.php
。
<form id="testForm" name="testForm" action="" method="post">
<input type="submit" id="btnTestCurrencyRate" name="btnTestCurrencyRate" value="Test" onclick="testCurrencyRate();"/>
</form>
一切安好。然而,当我将按钮类型从 更改为 时,问题就出现type="button"
了type="submit"
,它不起作用。Ajax 函数的错误部分的警告框只显示了一段时间,然后突然消失了。我找不到任何可能阻止此请求完成的合理原因。在我以前的项目中,同样的事情对我有用,但我XMLHttpRequest
用于发出 Ajax 请求。这里出了什么问题?