有没有办法调整媒体大小:RSS源上的缩略图URL(Blogger)目前,它的默认大小为72px,宽度为72px。
我试过在模板上添加这个javascript并且没有设法让它工作 - 我在</body>
<script type='text/javascript'>
function resizeThumb(e,b){var c=document.getElementById(e),d=c.getElementsByTagName("img");for(var a=0;a<d.length;a++){d[a].src=d[a].src.replace(/\/s72\-c/,"/s"+b+"-c");d[a].width=b;d[a].height=b}}resizeThumb("ID,100 );//]]>
</script>
感谢。
答案 0 :(得分:0)
以下是我的表现:
$img = el.find("thumbnail").attr("url"); //Get thumnail image from rss feed
$newText = $img.replace(/\/s72\-c/, "");//replace /s72\-c with nothing
console.log($newText);