<script>showImg('http://img01.sogoucdn.com/net/a/04/link?appid=100520033&url=http://mmbiz.qpic.cn/mmbiz_jpg/CXjiaiabYNficzsWHgibUPZZF3kN2HCMBFY8zv0OffuhdcufevIyorVqefHymAOBeyYe4KiaicKEO6YHDILFTv6V4D6w/0?wx_fmt=png');</script>
<script>
function showImg(url) {
var frameid = 'frameimg' + Math.random();
console.debug(frameid);
console.debug(url);
window.img = '<img id="img" style="width:600px" src=\'' + url + '?' + Math.random() + '\' /><script>window.onload = function() { parent.document.getElementById(\'' + frameid + '\').height = document.getElementById(\'img\').height+\'px\'; }<' + '/script>';
document.write('<iframe id="' + frameid + '" src="javascript:parent.img;" frameBorder="0" scrolling="no" width="100%"></iframe>');
}
</script>
$(function(){
$("#content").find("img").each(function(i){
$(this).replaceWith( showImg($(this).attr("data-src")))
})
});
function showImg(url) {
var frameid = 'frameimg' + Math.random();
console.debug(frameid);
console.debug(url);
window.img = '<img id="img" style="width:600px" src=\'' + url + '?' + Math.random() + '\' /><script>window.onload = function() { parent.document.getElementById(\'' + frameid + '\').height = document.getElementById(\'img\').height+\'px\'; }<' + '/script>';
return '<iframe id="' + frameid + '" src="javascript:parent.img;" frameBorder="0" scrolling="no" width="100%"></iframe>'
}