有什么方法可以调整媒体的大小:RSS feed(Blogger)上的缩略图URL目前的默认大小是高度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>


谢谢。

最佳答案

这是我的做法:

  $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);

09-25 16:48