如何避免IE下载json响应

时间:2015-02-05 22:37:28

标签: javascript html json internet-explorer

我们使用谷歌API进行地址验证,下面是示例HTML。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
function test(){

$.getJSON('https://maps.googleapis.com/maps/api/geocode/json?key=AIzaSyAf8jLP-ytDdra3sQD5M53l9Eh4zzgn_B4',
{
sensor: false,
address: "1907+SW+28TH+ST+BENTONVILLE+72712"
},
function( data, textStatus ) {
alert(data.results[0].formatted_address);
});
}
</script>
</head>
<body>
<button onclick="test()">Click to fade in boxes</button><br><br>
</body>
</html>

这在chrome和firefox中运行良好。我正在收到警报。但在IE中,此代码没有响应。我观察到IE正在尝试下载响应。有没有办法停止下载并以流形式获取(就像在chrome中一样)?

0 个答案:

没有答案