$(document).ready(function () { ////////////////////// °¶·¯¸® °Ô½ÃÆÇ ¸®½ºÆ® ÆäÀÌÁö $('.sul_menu font').removeAttr('style'); $('.gal_list *').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'); } }); // °Ô½Ã¹° ¼±Åà üũ¹Ú½º $('.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'); // font ¾È¿¡ ÀÖ´Â ÅØ½ºÆ®¸¦ ±âÁØÀ¸·Î °¢ ű׿¡ Ŭ·¡½º ºÎ¿© $('.gallery_etc font').each(function () { var text = $(this).text().trim(); // °ø¹é Á¦°Å ÈÄ ÅØ½ºÆ® °¡Á®¿À±â if (text.includes('¼³¸í')) { $(this).addClass('discrip'); } else if (text.includes('¹ßÁÖó')) { $(this).addClass('clients'); } }); // °¢ ±¸ºÐ ÅØ½ºÆ® »èÁ¦ $('.gallery_etc .discrip').each(function() { $(this).text($(this).text().replace('¼³¸í : ', '')); }); ////////////////////////// °¶·¯¸® °Ô½ÃÆÇ ºäÆäÀÌÁö $('#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('discrip'); } }); $('#post_area').closest('tr').addClass('content'); /////////////////////////// °¶·¯¸® °Ô½ÃÆÇ ÀÛ¼º/¼öÁ¤ ÆäÀÌÁö $('#container').has('.gal_form').addClass('gal_form_wrap'); });