$(document).ready(function () { $('[style]').removeAttr('style'); $('.sul_menu').addClass('cate_menu'); // Á¦¸ñ ÅÂ±× Å¬·¡½º Ãß°¡ $('.gal_list .bbsnewf5 img').each(function () { var imgSrc = $(this).attr('src'); // img ¿ä¼Ò°¡ src ¼Ó¼ºÀ» °¡Áö°í ÀÖ°í, ±× src°¡ À̹ÌÁö ÆÄÀÏÀ» °¡¸®Å°´ÂÁö È®ÀÎ if (imgSrc && imgSrc.match(/\.(jpg|jpeg|png|gif)$/i)) { $(this).closest('td').addClass('gallery_img'); } }); // font ¾È¿¡ ÀÖ´Â ÅØ½ºÆ®¸¦ ±âÁØÀ¸·Î °¢ ű׿¡ Ŭ·¡½º ºÎ¿© $('.gallery_etc font').each(function () { var text = $(this).text().trim(); // °ø¹é Á¦°Å ÈÄ ÅØ½ºÆ® °¡Á®¿À±â if (text.includes('±â°£')) { $(this).addClass('date'); } else if (text.includes('ÁÖÃÖ¡¤ÁÖ°ü')) { $(this).addClass('host'); } }); // °¢ ±¸ºÐ ÅØ½ºÆ® »èÁ¦ $('.gallery_etc .date').each(function() { $(this).text($(this).text().replace('±â°£ : ', '')); }); $('.gallery_etc .host').each(function() { $(this).text($(this).text().replace('ÁÖÃÖ¡¤ÁÖ°ü : ', '')); }); $('.gal_list > tbody > tr').each(function() { const $inputCheck = $(this).find('input[type="checkbox"]'); $inputCheck.addClass('gallery_check'); }); $('.gallery_check').parent('td').addClass('gallery_check_wrap'); // .date¿Í .host¸¦ .gallery_subject·Î À̵¿ $('.gal_list > tbody > tr').each(function() { const $date = $(this).find('.gallery_etc .date'); const $host = $(this).find('.gallery_etc .host'); const $gallerySubject = $(this).find('.gallery_subject'); $gallerySubject.append($date).append($host); }); // °¶·¯¸® °Ô½ÃÆÇ ºäÆäÀÌÁö $('#container').has('.gal_view').addClass('gal_view_wrap'); // font ¾È¿¡ ÀÖ´Â ÅØ½ºÆ®¸¦ ±âÁØÀ¸·Î °¢ ű׿¡ Ŭ·¡½º ºÎ¿© $('.gal_view_cont tr').each(function () { var text = $(this).find('.board_bgcolor').text().trim(); // °ø¹é Á¦°Å ÈÄ ÅØ½ºÆ® °¡Á®¿À±â if (text.includes('Á¦¸ñ')) { $(this).addClass('subject'); } else if (text.includes('±â°£')) { $(this).addClass('date'); } else if (text.includes('ÁÖÃÖ¡¤ÁÖ°ü')) { $(this).addClass('host'); } }); $('#post_area').closest('tr').addClass('content'); });