我收到错误“拒绝执行来自'URL'的脚本,因为其MIME类型('text/html')不可执行,并且启用了严格的MIME类型检查”。
我的代码如下。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Untitled Page</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$.ajax({
url: "https://www.google.com/finance/converter?a=1&from=INR&to=USD&jsoncallback=?",
type: "GET",
contentType: "application/javascript",
cache: false,
dataType: "jsonp",
success : function(response){
alert("Hi");
}
});
});
</script>
</head>
<body>
</body>
</html>
1条答案
按热度按时间v8wbuo2f1#
您提供的网址(
https://www.google.com/finance/converter?a=1&from=INR&to=USD&jsoncallback=?
)似乎指向一个HTML页面。错误是非常不言自明的。我听说谷歌货币转换器不再在线。请尝试一些其他的API可能像JsonRates