CHING
중화권 드라마 전문채널 CHING
드라마로 여는 세상
중국, 대만, 홍콩 등 다양한 중화권 콘텐츠. 수준 높은 중화권 드라마들을 한 곳에서
- 재재방송
- 본본방송
- 해화면해설
- 수수화방송
- 자자막방송
- 음음성다중
- SD일반화질
- HD고화질
- UHD초고화질
이 편성표는 방송사 사정에 따라 변경 될 수 있습니다.
지역 방송을 시청하시는 분들은 아래 고객센터로 문의 바랍니다.
LG헬로비전 1588-1000 /
딜라이브 1644-1100 /
B tv 알뜰 1877-7000 /
CMB 1544-3434 /
HCN 1877-8000
');
count_iptv++;
}else if (chnNumData[i]['구분'] == '위성' && chnNumData[i]['CHING_디지털']) {
$('.item_tbl.satellite .tbody').append('
'+chnNumData[i]['회사명']+''+chnNumData[i]['CHING_디지털']+'
');
count_satellite++;
}else if (chnNumData[i]['구분'] == '대표번호' && chnNumData[i]['CHING_디지털']) {
$('.item_tbl.cable .tbody').append('
'+chnNumData[i]['회사명']+''+chnNumData[i]['CHING_디지털']+'
');
count_cable++;
};
};
function ceilAndConvertToFloat(number) {
var ceilNumber = Math.ceil(number);
return parseFloat(ceilNumber.toFixed(2));
}
var maxCountRow = Math.max(count_iptv, count_satellite, ceilAndConvertToFloat(count_cable*0.5));
if($('.item_tbl.iptv .row').length < maxCountRow){
for (let i = 0; i <= maxCountRow-$('.item_tbl.iptv .row').length; i++) {
$('.item_tbl.iptv .tbody').append('
')
}
}
if($('.item_tbl.satellite .row').length < maxCountRow){
for (let i = 0; i <= maxCountRow-$('.item_tbl.satellite .row').length; i++) {
$('.item_tbl.satellite .tbody').append('
')
}
}
if($('.item_tbl.cable .row').length < maxCountRow*2){
if($('.item_tbl.cable .row').length % 2 != 0){
var cableRowCount = $('.item_tbl.cable .row').length+1;
}
for (let i = 0; i <= maxCountRow*2-cableRowCount; i++) {
$('.item_tbl.cable .tbody').append('
')
}
}
if(count_cable == 0){
$('.represent').addClass('type2')
}
if((count_iptv == 0 || count_satellite == 0) && count_cable != 0){
$('.represent').addClass('type3')
}
if(count_iptv == 0){$('.item_tbl.iptv').remove()}
if(count_satellite == 0){$('.item_tbl.satellite').remove()}
if(count_cable == 0){$('.item_tbl.cable').remove()}
})
$('#area1').change(function(){
onChangeArea1()
})
function onChangeArea1(){
$('#area2').html('
');
var channelName = 'CHING';
var area1 = $('#area1').val();
var area2 =[];
for (var i = 0; i < chnNumData.length; i++) {
if (chnNumData[i]['광역시도'] == area1 && (chnNumData[i][channelName+'_아날로그'] || chnNumData[i][channelName+'_8VSB'] || chnNumData[i][channelName+'_디지털'])) {
$.merge(area2, chnNumData[i]['시군구'].split(","));
}
}
const uniqueArea2 = area2.filter((value, index, self) => self.indexOf(value) === index);
uniqueArea2.sort();
for (var i = 0; i < uniqueArea2.length; i++) {
$('#area2').append('
')
}
}
function schChnNum(){
var selectedChannel = 'CHING';
var selectedArea1 = $('#area1').val();
var selectedArea2= $('#area2').val();
var indices = [];
if(selectedArea1 != '' && selectedArea2 != ''){
$('.bar_result').remove();
$('.bar_sch').after($('
'))
for (var i = 0; i < chnNumData.length; i++) {
var obj = chnNumData[i];
if (obj.hasOwnProperty('광역시도') && obj.hasOwnProperty('시군구') &&
typeof obj['광역시도'] === 'string' && typeof obj['시군구'] === 'string' &&
obj['광역시도'].indexOf(selectedArea1) !== -1 && obj['시군구'].indexOf(selectedArea2) !== -1) {
indices.push(i);
}
}
$('.bar_result [class^="item"]').remove()
var chnAnalogNum;
for (var i = 0; i < indices.length; i++) {
$('.bar_result').append('
');
$('.item'+(i+1)+' .tit').text(chnNumData[indices[i]]['회사명']);
$('.item'+(i+1)+' .areas').text(chnNumData[indices[i]]['광역시도']+' / '+chnNumData[indices[i]]['시군구']);
if(chnNumData[indices[i]][selectedChannel+'_디지털']){
$('.item'+(i+1)+' .digital .num').text(chnNumData[indices[i]][selectedChannel+'_디지털']);
}else {
$('.item'+(i+1)+' .digital .num').text('-');
}
if(chnNumData[indices[i]][selectedChannel+'_아날로그'] && chnNumData[indices[i]][selectedChannel+'_8VSB']){
chnAnalogNum = chnNumData[indices[i]][selectedChannel+'_아날로그']+'・'+chnNumData[indices[i]][selectedChannel+'_8VSB'];
}else if(chnNumData[indices[i]][selectedChannel+'_아날로그']){
chnAnalogNum = chnNumData[indices[i]][selectedChannel+'_아날로그']
}else if(chnNumData[indices[i]][selectedChannel+'_8VSB']){
chnAnalogNum = chnNumData[indices[i]][selectedChannel+'_8VSB']
}else {
chnAnalogNum = '-';
}
$('.item'+(i+1)+' .analog .num').text(chnAnalogNum);
}
}
}
function moreSchedule(){
$('.wrap_tbl').toggleClass('on')
}