我有一些<img>
与可能需要重定向到其他图片网址的跨域网址链接(使用src
属性)。我需要以某种方式跟踪浏览器请求原始URL时发生的每个重定向。
例如,如果我有:
<img src='http://www.something.com/redirect'/>
并且http://www.something.com/redirect
向location
发送了自定义http://something.com/pic.jpg
标头,我需要了解它。我如何在<img>
上检测JS或jQuery中的重定向?
答案 0 :(得分:1)
我认为这不太可能(当然我不是专家,但那是AFAIK),至少不像人们想象的那样直截了当。
这就是我认为你能找到的东西尽可能接近,我希望它会给你一些想法
var req = new XMLHttpRequest();
$('img').each(function() {
req.open('GET', $(this).prop('src'), false);
req.send(null);
alert(req.status);
});
两个不利方面:
答案 1 :(得分:1)
<script type="text/javascript" src="jquery-1.7.1.min.js"></script>
<img id='img' src='' width='200' />
<script type='text/javascript'>
/* our image */
var image = new Image();
$(image).load('yourimage.png', function(response, status, xhr) {
if (xhr.status == 200) {
// image loaded, now display the image
$('#img').attr('src','yourimage.png')
} else {
alert(xhr.status);
}
});
</script>
答案 2 :(得分:1)
如果您不受IE7限制,可以使用cors解决方案。这将允许您在没有JSON-P限制的情况下请求跨域(即您可以获取状态代码)。
有关详细信息,请参阅https://developer.mozilla.org/en/http_access_control。对于简单的GET请求,您应该没问题,但如果您需要POST,那么您可能需要预检您的请求。
答案 3 :(得分:0)
如何使用Ajax加载图像,未经测试的伪代码如下:
HTML:
<img id="img1" src="blank.gif">
JQuery的:
GetImage("http://www.something.com/redirect");
function GetImage(url)
{
$.ajax({
type: "GET",
url: url,
success: function(data, textStatus) {
if (data.redirect) {
// data.redirect contains the string URL to redirect to
ProcessLocationHeader(data);
GetImage(data.redirect);
}
else {
// No redirect means we have the correct image
$("#img1").src = url;
}
}
});
}
由于浏览器将缓存图像,因此不会从服务器加载twize。