在src中替换拇指大小

时间:2019-01-08 20:13:21

标签: javascript replacewith

我有此代码:

<div class="track">
<a href="#" rel="loadpage"><img src="http://localhost/thumb.php?src=2015381915_1861178087_859395037.jpg&amp;t=m&amp;w=112&amp;h=112" alt="alt"></a
</div>

因此,我想用js更改“ 112&h = 112”的大小。 感谢您的任何建议!

1 个答案:

答案 0 :(得分:0)

所以,这段代码对我有用!

<script type="text/javascript">
        window.onload=function(){
        $("img").each(function(){
            var src=$(this).attr("src");
          src=src.replace("112&h=112","200&h=200");
          var src=$(this).attr("src",src);
        });
        }
</script>