$j("img").each(function() {
var img = $j(this);
var source = img.prop("src");
var alt = img.prop("alt");
var source1 = source.substring(source.lastIndexOf('.'), source.lastIndexOf('/'))
var source2 = source1.substring(1);
if (alt || alt == "") {
img.prop("alt", source2);
}
else if (alt != source) {
img.prop("alt", source2);
}
});
/* Webページ内の画像名に代替タグ画像の名前を変更する*/画像にALTタグを変更するための私のjQueryのコードは、IE 7またはIE 8のために働くとFFとChrome
キャッシュがクリアされると、IE 7とIE 8で動作することがあります。 –