I have created an image preview using jquery
$('#urlNF').change( function(event) {
var imgURL = $("#urlNF").val();
$("#editNFPicture").removeClass('hidden');
$("#editNFPicture").attr("src", imgURL);
});
The preview works fine in Safari but in Chrome even though the src contains the blob I see only this :
PS:如果我在新标签页中打开图像,则它可以正常工作/可以看到该图像。
有什么想法为什么预览图像不起作用?
谢谢。