我正在尝试在 IE7 中显示嵌入的图像。图像以 base64 编码进行编码。
"src="data:image/jpg;base64"
这是我试过的..
我从下面的链接下载了编码器/解码器脚本。
http://www.webtoolkit.info/javascript-base64.html
我试图解码图像,但我收到无效指针错误,不知道为什么。有人可以告诉我在 IE7 中显示嵌入图片的方法吗?
我使用了这个链接:http ://dean.edwards.name/weblog/2005/06/base64-ie/
var BASE64_DATA = /^data:.*;base64/i;
function fixBase64(img) {
if (BASE64_DATA.test(img.src)) {
document.writeln(Base64.decode(img.src.slice(5))); // Just trying to display the picture in screen
}
};
for (var i = 0; i < document.images.length; i++) {
fixBase64(document.images[i]);
}
谢谢,
巴拉尼