我编写了一个 ajax 调用来更改图像并在 ajax 调用成功时将其显示在浏览器上。但图像在 IE 和 Firefox 上没有变化。它在 Chrome 上运行良好。
var url = "/store/artwork/index/renderSVGFile?"+"docID=<?php echo $docID ?>&unique="+(new Date()).getTime();
jQuery('*').css('cursor', 'wait');
jQuery.ajax({
url: url,
cache:false,
type: "POST",
data: {},
success: function(data) {
jQuery('#product-img-template').html("<img src='/path/to/image/<?php echo $docID ?+>.png' />");
jQuery('#product-img-template').css("position", "relative");
jQuery('#product-img-template').css("top","-430px");
jQuery('#product-img-template').css("left","-7px");
jQuery('#product-img-template').css("height","400px");
jQuery('#product-img-template').css("margin-bottom","-350px");
jQuery('#product-img-template').css("z-index","20");
jQuery('*').css('cursor', 'auto');
},
failure: function(data) {
jQuery('*').css('cursor', 'auto');
}
});
我可以看到图像已经更改,但没有显示在浏览器上。谁能帮我解决这个问题?