읽는 재미의 발견

새로워진 한국일보로그인/회원가입

  • 관심과 취향에 맞게 내맘대로 메인 뉴스 설정
  • 구독한 콘텐츠는 마이페이지에서 한번에 모아보기
  • 속보, 단독은 물론 관심기사와 활동내역까지 알림
자세히보기
제돌이 방사 1년… 돌고래 25마리 또 들여 왔다
알림
알림
  • 알림이 없습니다
\n' + ' '); } } // 최근 검색어가 없으면 } else { // 전체 삭제 버튼 비활성화 $('button[data-el="search-record-delete-all-btn-in-gnb"]').attr('disabled', true); $('dl[data-el="search-record-list-in-gnb"]').append('
최근 입력한 검색어가 없습니다.
'); // 컨테이너 css class toggle $('div[data-el="search-toggle-recent-word"]').addClass('no-result'); } } function onClickSearchRecord(searchText) { location.href = _searchHost + '/Search?searchText=' + encodeURIComponent(searchText); } function onClickDeleteSearchRecord(index, event) { var searchRecordCookie = Cookies.get('search-record'); var searchRecord = searchRecordCookie.split(',').reverse(); // Prevent Submit Form Tag event.preventDefault(); event.stopImmediatePropagation(); // 해당 인덱스 삭제 searchRecord.splice(Number(index), 1); if (searchRecord.reverse().join(',') !== '') { // Cookies.set('search-record', searchRecord.join(','), {path: '/', expires: 60 * 60 * 24 * 265}); fn_setCookie('search-record', searchRecord.join(','), {path: '/', expires: 60 * 60 * 24 * 265}); } else { Cookies.remove('search-record'); } setSearchRecord(); } /** * 검색어 전체 삭제 listener */ function setSearchRecordDeleteAllListener() { $('button[data-el="search-record-delete-all-btn-in-gnb"]').on('click', function () { Cookies.remove('search-record'); setSearchRecord(); }) } /** * 검색어 저장 on off 버튼 listener */ function setSaveSearchRecordOnOffBtnListener() { $('button[data-el="search-record-save-off-btn-in-record-in-gnb"]').on('click', function () { var flag = Cookies.get('save-search-record-flag'); if (flag === 'true' || flag === undefined) { // Cookies.set('save-search-record-flag', 'false', {path: '/', expires: 60 * 60 * 24 * 265}); fn_setCookie('save-search-record-flag', 'false', {path: '/', expires: 60 * 60 * 24 * 265}); $('button[data-el="search-record-save-off-btn-in-record-in-gnb"]').html('검색어 저장 켜기'); $('button[data-el="search-record-save-off-btn-in-auto-in-gnb"]').html('검색어 저장 켜기'); } else { // Cookies.set('save-search-record-flag', 'true', {path: '/', expires: 60 * 60 * 24 * 265}); fn_setCookie('save-search-record-flag', 'true', {path: '/', expires: 60 * 60 * 24 * 265}); $('button[data-el="search-record-save-off-btn-in-record-in-gnb"]').html('검색어 저장 끄기'); $('button[data-el="search-record-save-off-btn-in-auto-in-gnb"]').html('검색어 저장 끄기'); } }); $('button[data-el="search-record-save-off-btn-in-auto-in-gnb"]').on('click', function () { var flag = Cookies.get('save-search-record-flag'); if (flag === 'true' || flag === undefined) { // Cookies.set('save-search-record-flag', 'false', {path: '/', expires: 60 * 60 * 24 * 265}); fn_setCookie('save-search-record-flag', 'false', {path: '/', expires: 60 * 60 * 24 * 265}); $('button[data-el="search-record-save-off-btn-in-record-in-gnb"]').html('검색어 저장 켜기'); $('button[data-el="search-record-save-off-btn-in-auto-in-gnb"]').html('검색어 저장 켜기'); } else { // Cookies.set('save-search-record-flag', 'true', {path: '/', expires: 60 * 60 * 24 * 265}); fn_setCookie('save-search-record-flag', 'true', {path: '/', expires: 60 * 60 * 24 * 265}); $('button[data-el="search-record-save-off-btn-in-record-in-gnb"]').html('검색어 저장 끄기'); $('button[data-el="search-record-save-off-btn-in-auto-in-gnb"]').html('검색어 저장 끄기'); } }) } /** * 검색어 input 리스너 세팅 */ function setSearchInputListener() { $('button[data-el="search-input-in-gnb-btn"]').off('click.search-input-in-gnb-btn').on('click.search-input-in-gnb-btn', function(){ var searchText = $(this).parent().find('input[data-el="search-input-in-gnb"]').val(); saveSearchRecord(searchText); location.href = _searchHost + "/Search?searchText=" + encodeURIComponent(searchText); }) $('input[data-el="search-input-in-gnb"]').on('keyup', function (key) { //키가 13이면 실행 (엔터는 13) var searchText = $(this).val(); if (key.keyCode == 13 && searchText !== '') { saveSearchRecord(searchText); location.href = _searchHost + "/Search?searchText=" + encodeURIComponent(searchText); } // 상단 검색에서 자동완성 막기. // if( this.dataset.auto !== 'disabled' ){ // var param = { // "query": { // "bool": { // "should": [{ // "term": { // "PHRASE_Ngram": Hangul.disassemble(key.target.value).join('') // } // }], // "minimum_should_match": 1 // } // } // }; // var relatedSearchKeywordList = ''; // $.ajax({ // url: "/Search-auto-complete", // method: "POST", // contentType: 'application/json', // data: JSON.stringify(param), // success: function (response) { // var $autoCompleteList = $('dl[data-el="auto-complete-list-in-gnb"]'); // $autoCompleteList.html(''); // $autoCompleteList.html('
자동 완성
'); // for (var i = 0; i \n' + // ' ' + response[i]._id + '\n' + // ' '); // if (i === 0) { // relatedSearchKeywordList = response[i]._id; // } else { // relatedSearchKeywordList += ',' + response[i]._id; // } // } // Cookies.set('relatedSearchKeyword', relatedSearchKeywordList); // }, // fail: function (err) { // // console.log('댓글 등록 -> 댓글 등록 에러'); // } // }); // } }); } /** * 최근 검색 기록 추가 */ function saveSearchRecord(searchText) { // 빈 값 검색 기록에 검색하면 넣지 않고 검색만 한다. if ($.trim(searchText) === '') { return; } var searchSaveFlag = Cookies.get('save-search-record-flag'); // 검색어 저장이 true 이면 if (searchSaveFlag === 'true' || searchSaveFlag === undefined) { var now = new Date(); var ymd = now.getFullYear() + "." + ('0' + (now.getMonth() + 1)).slice(-2) + "." + now.getDate(); var searchRecord = Cookies.get('search-record'); // 빈 값이 아니면 if (searchRecord !== undefined) { var searchRecordList = searchRecord.split(','); if (searchRecordList.length === 10) { searchRecordList.reverse(); searchRecordList.pop(); searchRecordList.reverse(); searchRecord = searchRecordList.join(','); } searchRecord += ',' + searchText + "_splitter" + ymd; } else { searchRecord = searchText + "_splitter" + ymd; } // Cookies.set('search-record', searchRecord, {path: '/', expires: 60 * 60 * 24 * 265}); fn_setCookie('search-record', searchRecord, {path: '/', expires: 60 * 60 * 24 * 265}); setSearchRecord(); } } /** * 인기 검색어 조회 * 2021-04-08 인기검색어 노출 제거.(네이버 실시간 검색 종료) */ function setPopularKeyword() { $.ajax({ url: "/Search-popular-keyword", method: "GET", success: function (response) { // console.log('인기 검색어 조회 성공'); // console.log(response); var popularKeywordList = response; var metaKeywordList = []; // 기사 개수 var popularArticleCount = 20; // 기사 개수에 따른 분기점 var popularKeywordCount = 4; if (popularKeywordList.length > 0) { $('p[data-el="keyword-created-dt"]').html(getFormattedDate(popularKeywordList[0].createdDt, 'yyyy.mm.dd hh:mm') + ' 기준') for (var i = 0; i ' + parseInt((i / popularKeywordCount) + 1) + '' + item.topic + '') $('#rank-list').append('
  • ' + parseInt((i / popularKeywordCount) + 1) + '. ' + item.topic + '
  • '); $('#hot-keyword-main-' + i).html('
    \n' + '
    \n' + ' ' + articleShoulder + '\n' + '

    ' + getArticleCutName(item) + item.articleTitle + '

    \n' + ' ' + getFormattedDate(item.articleDeployDt, 'yyyy.mm.dd hh:mm') + '\n' + '
    \n' + '
    \n' + ' \n' + ' \n' + ' \n' + '
    \n' + '
    \n' + '

    \n' + ' ' + item.articleFrontPanContents + '\n' + '

    ') } else if (i % popularKeywordCount !== 0) { $('#hot-keyword-sub-' + parseInt(i / popularKeywordCount)).append('
  • ' + getArticleCutName(item) + item.articleTitle + '
  • ') } } setTimeout(function() { $('#rank-list').addClass('is-play'); }, 500); $('meta[name="news_keywords"]').attr('content', metaKeywordList.join(",")); $('.btn-open-search').click(function() { if (location.href.indexOf('/Search') > -1) { location.replace(_searchHost+'/Search?searchText=' + popularKeywordList[0].topic) } else { location.replace(_searchHost+'/Search'); } }); } }, fail: function (err) { // console.log('댓글 등록 -> 댓글 등록 에러'); } }); }

    제돌이 방사 1년… 돌고래 25마리 또 들여 왔다

    입력
    2014.07.18 04:40
    0 0

    거제 씨월드·제2롯데월드 등서 수입

    돌고래 쇼 대신 체험시설로 운영

    환경단체 "반생태적 행위 여전"

    남방큰돌고래 ‘제돌이’가 제주 바다로 돌아간 지 18일로 꼭 1년이 됐다. 사진은 지난해 과천 서울동물원 수족관에서 야생 적응훈련을 하고 있는 모습. 신상순기자 ssshin@hk.co.kr
    남방큰돌고래 ‘제돌이’가 제주 바다로 돌아간 지 18일로 꼭 1년이 됐다. 사진은 지난해 과천 서울동물원 수족관에서 야생 적응훈련을 하고 있는 모습. 신상순기자 ssshin@hk.co.kr

    지난달 17일 제주 서귀포 마린파크. 이날 동물자유연대가 촬영한 동영상에는 걸그룹의 흥겨운 노래가 흘러나오는 수족관에서 멸종위기종인 큰돌고래가 낯선 관람객들의 손길에 몸을 내맡기고 있었다. 아이들을 포함한 관람객 5,6명은 60㎝ 깊이의 얕은 수조에 발을 담그고 신기한 듯 연신 돌고래를 쓰다듬었다.

    40~50분간의 체험 시간이 끝나자 돌고래는 포상의 의미로 조련사가 던져준 죽은 고등어 토막을 냉큼 받아먹었다. 돌고래는 원래 죽은 물고기를 먹지 않지만 야생에서 포획된 뒤 수족관으로 팔려오기 전 훈육과정을 통해 이런 습성이 길러졌다. 이곳의 체험 프로그램은 매일 5,6회 진행된다. 동물자유연대 김영환 활동가는 “돌고래는 야생에서 시속 80㎞로 움직이는 굉장히 활동적인 동물”이라며 “가만히 있는 자세는 물론이고 수족관의 소음, 사람에게 반복적으로 노출되는 것 등은 돌고래에게 엄청난 스트레스”라고 말했다.

    서울대공원의 남방큰돌고래 ‘제돌이’가 제주 바다로 돌아간 지 18일로 꼭 1년이 됐지만 그의 친구들은 여전히 ‘비좁은 감옥’인 수족관 생활에서 벗어나지 못하고 있다. 제돌이의 방류는 아시아 국가 최초의 상징적 사건으로, 동물보호에 대한 한국의 이미지를 높였지만 그때뿐이었다.

    17일 환경운동연합 바다위원회와 환경보건시민센터가 펴낸 ‘고래류 자연방사와 사육실태 조사보고서’에 따르면 지난해부터 최근까지 제돌이 자연 방사 전후로 수입된 고래류는 25마리(큰돌고래 18마리ㆍ흰고래 7마리)에 달한다. 기존 전국 9개 수족관에서 사육 중이었던 돌고래가 26마리였던 점을 감안하면 최근 1년간 100% 가량 새로 수입된 셈이다.

    돌고래를 가장 많이 수입한 곳은 큰돌고래 16마리, 흰고래 4마리를 들여와 지난달 개장한 거제 씨월드다. 제2롯데월드(흰고래 3마리), 제주 퍼시픽랜드(큰돌고래 2마리)가 그 뒤를 이었다.

    수족관들은 제돌이를 계기로 거부감이 커진 돌고래 쇼 대신 상대적으로 반감이 적은 돌고래 체험시설을 늘리면서 오히려 돌고래 수입이 크게 늘었다. 지자체 입장에서도 관광자원으로 활용할 수 있는 돌고래 체험시설을 환영하는 분위기다.

    그러나 수족관 돌고래의 삶은 순탄치 않다. ▦음악ㆍ관객들의 웅성거림ㆍ정수시설 모터소리 등 각종 소음 ▦좁은 수조 ▦사회적 관계 단절 등 각종 스트레스에 시달리다 짧은 생을 마감한다. 보고서에 따르면 수족관에서 사육된 고래류 71마리 중 15마리(21%)가 폐사했다. 올해 3월에도 울산 장생포 고래생태체험관에서 태어난 새끼 돌고래가 3일만에 죽는 등 수족관 돌고래의 평균 수명은 자연수명(30~50년)보다 매우 짧은 것으로 알려져 있다.

    환경보건시민센터 최예용 소장은 “제돌이 방사 후 우리나라에 대해 친환경 이미지가 쌓였고 동물보호에 대한 국민들의 인식도 크게 높아졌는데 지자체와 기업들이 이러한 추세와는 반대로 돌고래 수입을 늘리고 있다”고 비판했다.

    변태섭기자 libertas@hk.co.kr

    뉴스A/S▶돌고래 '제돌이'에 대해 잘 모르신다면

    '); document.write('
    '); document.write('
    '); }else{ for (var i = 0; i '); document.write('
    '); continue; } document.write('
    '); if(id.indexOf('pc_news_endpage_low') == 0){ document.write('
    '); } } $( document ).ready(function() { // 스크립트 삭제(태그 개수에 따라 위치가 잡히기 때문에 필요 없는 태그 삭제) $('.end-ad-container[data-ad="articleDivide"] script').remove(); });

    기사 URL이 복사되었습니다.

    세상을 보는 균형, 한국일보Copyright ⓒ Hankookilbo 신문 구독신청
    '); li.attr('class', "mst_" + item.articleId + "_" + i); li.find('a').attr('href', getArticleUrl(item) + '?type=AB1&rPrev=' + '201407180457720501').attr('target', '_self'); li.find('div.title').text(item.articleTitle); li.find('div.img-box > img').attr('src', item.filePath); $('#related-article-list').append(li); } } else { $('.more-news').attr('style', 'display:none;'); } }, error: function (req, stat, err) { console.log(err); } }); } // 관련기사 목록 가져오기 function getRelatedList(){ // 관련기사 / 추천기사 AB 테스트 $.ajax({ url: url, method: "GET", contentType: 'application/json', success: function(data) { let relatedData = []; let recommendData = []; for (let i = 0; i h3').text(targetTitle); for (let i = 0; i
    '); li.attr('class', classTag + item.articleId + "_" + i); li.find('a').attr('href', getArticleUrl(item) + '?type=AB1&rPrev=' + '201407180457720501').attr('target', '_' + item.articleLinkTargetType); li.find('div.title').text(getArticleCutName(item) + item.articleTitle); if (item.repAttach != null) { li.find('div.img-box > img').attr('src', item.repAttach.filePath); } if (isMovieSectionYN === 'Y') { $('#related-article-list-video').append(li); } else { $('#related-article-list').append(li); } } } // console.log('========== 관련된 기사 조회 성공 =========='); // checkRelatedList(data, isMovieSectionYN); }, error: function (req, stat, err) { } }); // } // 관련기사 목록 갯수 확인 function checkRelatedList(data, isMovieSectionYN){ drawRelatedList(data, isMovieSectionYN); } // 관련기사 그리기 function drawRelatedList(data, isMovieSectionYN){ console.log("isMovieSectionYN: " + isMovieSectionYN); for (var i = 0; i
    '); li.attr('class', "rec_" + item.articleId + "_" + i); li.find('a').attr('href', getArticleUrl(item) + '?type=AB1&rPrev=' + '201407180457720501').attr('target', '_' + item.articleLinkTargetType); li.find('div.title').text(getArticleCutName(item) + item.articleTitle); if (item.repAttach != null) { li.find('div.img-box > img').attr('src', item.repAttach.filePath); } if (isMovieSectionYN == 'Y') { $('#related-article-list-video').append(li); } else { $('#related-article-list').append(li); } } } // 관련기사 호출 getRelatedList(); /** * 기사 구독 버튼 클릭 */ function onClickSubscribeArticleBtn(location) { subscribeLocation = location; // 로그인 확인 if (Cookies.get('accessToken') === undefined) { $('#sign-in-request-alert').openPopup(); return; } if ($(event.target).hasClass('on')) { $('#delete-subscription-popup').openPopup(); return; } subscribeTypeCheck(); } /** * 구독 분기 함수 */ function subscribeTypeCheck(){ //if(subscribeLocation == 'JPAGE' || subscribeLocation == 'TAG'){ if(subscribeLocation == 'JPAGE' || subscribeLocation == 'HASHTAG'){ subscribeArticleNew(subscribeLocation); }else{ subscribeArticle(); } } /** * 기사 구독 */ function subscribeArticle() { var usersSubscriptionPart = ''; var usersSubscriptionValue = ''; var seriesType = ''; var subContentType = ""; switch (usersSubscriptionPart){ case 'SeriesColumn': seriesType = 'NEWS_SERIES'; subContentType = '칼럼'; break; case 'Planning': seriesType = 'NEWS_PLANNING'; subContentType = '연재'; break; case 'Series': seriesType = 'NEWS_PLANNING'; subContentType = '연재'; break; case 'NameColumn': seriesType = 'NEWS_SERIES'; subContentType = '칼럼'; break; } $.ajax({ url: '/my/subscription', method: "POST", contentType: 'application/json', data: JSON.stringify({ usersSubscriptionPart: seriesType, usersSubscriptionValue: usersSubscriptionValue }) }).success(function (response) { var successYn = response; if (successYn) { if (successYn === 'Y') { fn_setGoogleAnalyticsUserDetailsUpdate(""); var sub_content = ''; if ("btn-subsc" == $('.btn-subsc').attr('class')) { //구독 중 fn_googleAnalyticsSubscribe(sub_content, subContentType); } else { //구독 취소 fn_googleAnalyticsUnsubscribe(sub_content, subContentType); } $('.btn-subsc').toggleClass('on'); } else if(successYn === 'F'){ $('#subscribe-valid-popup').openPopup(); $('.btn-subsc').remove(); } else { $('.btn-subsc').removeClass('on'); } } else { // console.log('기사 구독 -> 실패') } }).fail(function (error) { // }); } /** * 기자 구독 */ function subscribeArticleNew(location) { // 기사 구독 api를 쏜다 -> 중복체크는 controller에서 한다. if(location == 'JPAGE'){ $.ajax({ url: '/my/subscription', method: "POST", contentType: 'application/json', data: JSON.stringify({ usersSubscriptionPart: location, usersSubscriptionValue: '23e32d5f-fd78-4050-adbc-9a815a124e68' }) }).success(function (response) { var successYn = response; if (successYn == 'Y') { // css를 바꾼다 // console.log('기사 구독 -> 성공'); fn_setGoogleAnalyticsUserDetailsUpdate(""); $('.subsc-btn.jpage').toggleClass('on'); if ($('.subsc-btn.jpage').hasClass('on')) { $('.subsc-btn.jpage').siblings('.add-pop').show(); //구독 중 fn_googleAnalyticsSubscribe('변태섭', '기자'); } else { $('.subsc-btn.jpage').siblings('.cancel-pop').show(); //구독 취소 fn_googleAnalyticsUnsubscribe('변태섭', '기자'); } } else if(successYn === 'F') { $('#subscribe-valid-popup').openPopup(); $('.subsc-btn.jpage').remove(); } else { // console.log('기사 구독 -> 실패') } }).fail(function (error) { // }); // }else if(location == 'TAG'){ }else if(location == 'HASHTAG'){ $.ajax({ url: '/my/subscription', method: "POST", contentType: 'application/json', data: JSON.stringify({ usersSubscriptionPart: location, usersSubscriptionValue: '' }) }).success(function (response) { var successYn = response; if (successYn === 'Y') { // css를 바꾼다 // console.log('기사 구독 -> 성공'); $('.subsc-btn.tag').toggleClass('on'); if ($('.subsc-btn.tag').hasClass('on')) { $('.subsc-btn.tag').siblings('.add-pop').show(); } else { $('.subsc-btn.tag').siblings('.cancel-pop').show(); } } else if(successYn === 'F') { $('#subscribe-valid-popup').openPopup(); $('.subsc-btn.tag').remove(); } else { // console.log('기사 구독 -> 실패') } }).fail(function (error) { // }); } } /** * 기사 저장 버튼 클릭 */ function onClickSaveArticleBtn(location) { // 로그인 확인 if (Cookies.get('accessToken') === undefined) { $('#sign-in-request-alert').openPopup(); return; } // 기사 저장 api를 쏜다 -> 중복체크는 controller에서 한다. $.ajax({ url: '/article/activity', method: 'POST', contentType: 'application/json', data: JSON.stringify({ articleId: '201407180457720501', activityType: 'Save' }), success: function (response) { // console.log('기사 저장 -> 성공'); var flag = response; if (flag) { // 기사 저장 css 토글 $('.btn-bookmark').toggleClass('on'); $('.icon-toolbox-bookmark').toggleClass('on'); // on이면 추가 popup off면 제거 popup if ($('.btn-bookmark').hasClass('on')) { setGoogleAnalyticsArticleSave(); if (location === 'top') { $('#top-save-article-popup').show(); } else { $('#bottom-save-article-popup').show(); } } else { if (location === 'top') { $('#top-delete-article-popup').show(); } else { $('#bottom-delete-article-popup').show(); } } // css를 바꾼다 } else { // console.log('기사 저장 -> 실패') } toggleAnimation('bottom-save-article-btn'); }, fail: function () { // console.log('기사 저장 -> 에러') } }) } function setGoogleAnalyticsArticleSave() { var headline = $('meta[name="headline"]').attr('content'); var content_category = $('meta[name="content_category"]').attr('content'); var content_subcategory = $('meta[name="content_subcategory"]').attr('content'); var article_type = $('meta[name="article_type"]' ).attr('content'); var article_length = $('meta[name="article_length"]' ).attr('content'); if (Cookies.get('accessToken') !== undefined) { window.dataLayer = window.dataLayer || []; $.ajax({ url: '/google-analytics/user-details-decrypt', type: 'GET', contentType: 'application/json', success: function (data) { dataLayer.push({ 'event': 'save', 'user_id': data.user_id, 'gender': data.gender, 'yob': data.yob, 'headline': headline, 'content_category': content_category, 'content_subcategory': content_subcategory, 'article_type': article_type, 'article_length': article_length, }); }, error: function () { } }); } } /** * 팝업 리스너들.. 외부 클릭시 숨긴다. */ var bottomSaveArticlePopup = $('#bottom-save-article-popup'); var bottomDeleteArticlePopup = $('#bottom-delete-article-popup'); var bottomSubscriptionSavePopup = $('#bottom-subscription-save-popup'); var bottomSubscriptionDeletePopup = $('#bottom-subscription-delete-popup'); $(document).mouseup(function (e) { // if the target of the click isn't the container nor a descendant of the container if (!bottomSaveArticlePopup.is(e.target) && bottomSaveArticlePopup.has(e.target).length === 0) { bottomSaveArticlePopup.hide(); bottomDeleteArticlePopup.hide(); bottomSubscriptionSavePopup.hide(); bottomSubscriptionDeletePopup.hide(); } }); // 본문 중간 광고 하단 공백 제거. $(document).ready(function(){ $('.editor-p').each(function(i, dom){ $.each(dom.childNodes, function(j, node){ if(node.nodeType === 1 && String(node.tagName).toUpperCase() === 'BR' && (dom.dataset.breakType === undefined || dom.dataset.breakType !== 'text') ){ dom.dataset.breakType = 'break'; }else{ dom.dataset.breakType = 'text'; } }) if(dom.dataset.breakType === 'break' && $(dom).prev().hasClass('end-ad-container')){ $(dom).remove(); } }) $("button[name='hashtags']").on("click", function () { var tag = this.id var tagId = this.value var url ="/tag/info/"+tagId+'/'+tag+'?page=1'; location.href = url; }); })
    \n' + '

    ' + article.articleTitle + '

    \n' + ' \n' + ' ' } $('ul[data-el="topIssueArticlesList"]').empty().html(html) }).fail(function (err) { // console.log('라이브이슈 - 최근기사 조회-> 에러'); $('div[data-el="topIssueArticles"]').hide(); }); } getTopIssues(); })(window, document);
    ' item.find('a').append(html); item.find('a').attr('href', article.articleUrl + '?type=AB6'); item.find('a').attr('target', '_' + article.articleLinkTargetType); $target.append(item); } } else { $("#topViewArticlesTitle").css("display", "none"); $("#topViewArticlesContainer").css("display", "none"); } $target = $('#topViewArticlesSubContainer'); if ($target) { $target.data('data', data); $li = $target.find('li'); $target.empty(); } articles = data.sectionArticles; if (articles.length > 0) { for (var i = 0; i 0) { var ext = (article.filePath).substring(idx); articleFilePath = (article.filePath).replace(ext, '_s' + ext); } if ((article.articleTitle.indexOf('[백운산 오늘의 운세]') == 0) && (article.filePath == '/images/Default-Image.png')) { articleFilePath = '/images/fortune/fortune384.jpg'; } var html = '

    ' + '' + (i + 1) + '' + '' + article.articleTitle + '' + '

    \n' + '
    \n' + '\n' + '
    ' item.find('a').append(html); item.find('a').attr('href', article.articleUrl + '?type=AB7'); item.find('a').attr('target', '_' + article.articleLinkTargetType); $target.append(item); } } else { $("#topViewArticlesSubContainer").css("display", "none"); $("#topViewArticlesSubContainer").prev().css("display", "none"); } }, error: function (req, stat, err) { // console.log(err); } }); // ajax

    LIVE ISSUE

    기사 URL이 복사되었습니다.

    댓글0

    0 / 250
    중복 선택 불가 안내

    이미 공감 표현을 선택하신
    기사입니다. 변경을 원하시면 취소
    후 다시 선택해주세요.