例如,有一个图标
例如
<img id='close' src="about:blank" />
javascript函数
$('#close').attr('src','http://abc.jpg');
问题是,在静态 html 页面中定义 img 标签的 URL 的最佳方法是什么?
因为,当前的方法导致
Resource interpreted as Image but transferred with MIME type text/html: "about:blank".
谢谢。