入力したテキストで画像置換

jQuery使ってます。

jQuery使ってます。

  • タグ:
  • タグはありません
$(function(){
	$('.textimage').each(function(key,value){
		var name = $(this).children('dt').text();
		if( name == 'n'){
			$(this).find('dd img').remove();
			$(this).children('dt').empty();
		} else {
			$(this).find('dd img').attr('src','common/img/' + name + '.jpg');
			$(this).children('dt').empty();
		}
	});
});