高性能网站的一个建议是减少 HTTP 连接数,所以使用内联图像嵌入页面可以减少 HTTP 连接数。目前浏览器支持Data URI的有:Opera 7.2+、Firefox、Safari、Netscape、Mozilla、 IE8+。
文章关键字 ‘InternetExplorer.Application’
用Data URI Scheme嵌入内联图像
2011年06月5日,星期日在InternetExplorer.Application中显示本地图片
2011年02月19日,星期六很久以前的问题了,一直没解决,今天无意中搜到了答案。
在InternetExplorer.Application对象中显示远程服务器上的图片是没有问题的:
Dim IE Set IE = CreateObject("InternetExplorer.Application") IE.Navigate "about:blank" IE.Document.write "<img src='https://demon.tw/demon.gif' />" IE.Visible = True
然而,在IE默认的设置下,却无法显示本地图片:
(更多…)