我在扩展名为 .JPG 的文件夹中有一些图像。我想以编程方式将图像扩展名更改为 .PNG。我之前的帖子在这里:https ://stackoverflow.com/questions/15428521/read-a-file-extension-and-change-that-extension 。
$.ajax({
type: "GET",
url: "aa.jpg",
dataType: "snapshot",
success: function (snapshot)
{
try
{
var src = $(this).attr("url");
$(src).attr('src',$(this).attr('url').replace('.jpg','png'));
}
catch(ex)
{
alert(ex);
}
}
});