$(document).ready(function () { ////////////////////// Ä«Å×°í¸® ÅÇÇü½Ä $('.sul_menu font').removeAttr('style'); $('.sul_menu').addClass('cate_menu'); // Á¦¸ñ ÅÂ±× Å¬·¡½º Ãß°¡ ////////////////////// °¶·¯¸® °Ô½ÃÆÇ ¸®½ºÆ® ÆäÀÌÁö $('.gal_list *').removeAttr('style'); $('.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('host'); } // else if (text.includes('¹ßÁÖó')) { // $(this).addClass('clients'); // } }); // °¢ ±¸ºÐ ÅØ½ºÆ® »èÁ¦ $('.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'); /////////////////////////// À¥Áø °Ô½ÃÆÇ ¸®½ºÆ® ÆäÀÌÁö // °Ô½Ã¹° ¼±Åà üũ¹Ú½º $('.webz_list > tbody > tr').each(function () { const $inputCheck = $(this).find('input[type="checkbox"]'); $inputCheck.addClass('webz_check'); }); $('.webz_check').parents('td').addClass('webz_check_wrap'); $('tr').each(function () { if ($(this).children('.webzine_type2_table_line').length > 0) { $(this).css('display', 'none'); } }); });