我有此代码:
<div class="track">
<a href="#" rel="loadpage"><img src="http://localhost/thumb.php?src=2015381915_1861178087_859395037.jpg&t=m&w=112&h=112" alt="alt"></a
</div>
因此,我想用js更改“ 112&h = 112”的大小。 感谢您的任何建议!
答案 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>