2
var image = new Image()
image.src = "http://www.roblox.com/Thumbs/Asset.ashx?Width=110&Height=110&ImageFormat=png&UserAssetID=1343250665"
image.onload = function(){
    print(this.src)
}

当我运行这个脚本时,这个图像实际上加载了:“ http://t6ak.roblox.com/65fc2ffcc8aea7ba65a1d1feda173540

如何获取图片的新网址?我试过this.src,但它只是给了我旧网址“ http://www.roblox.com/Thumbs/Asset.ashx?Width=110&Height=110&ImageFormat=png&UserAssetID=1343250665

帮助?

4

2 回答 2

2

并不真地。src是一个属性,它不会改变。

重复:使用 javascript,如何在 img src 上进行 302 重定向后获得最终结果 URL?

于 2013-06-16T10:20:43.043 回答
2

在这种特殊情况下,服务器端有重定向,所以客户端没有其他src..

于 2013-06-16T10:10:04.107 回答