请帮我优化这段代码,因为它工作得非常慢。
$("img[src*='bt_']").each(function() {
var newSrc = $(this).attr('src');
var violetCheck = "/violet/";
if(newSrc.indexOf(violetCheck) == -1){
newSrc = newSrc.replace('images/','images/violet/');
$(this).attr('src', newSrc);
}
});