jq替换网页上所有img的src值中某个字符串

要修改页面上所有Img的src值,需要遍历所有Img,获取它的src值,进行修改。
下边代码可把页面上src值中所有‘/thumbs/’换成‘/’。

<script type="javascript">
window.onload= function(){
   $("img").each(
       function(){
           var str; 
           str = $(this).attr("src").replace("/thumbs/", "/");
           $(this).attr("src",str);
       }
    );
}
script>

你可能感兴趣的:(前端)