- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
function menu_click(id) {
/*2011/12/16일 author:kimsonghyok modifyed*/
switch(id) {
case 5:
//parent.main.location.href="intro.php?type=1";
parent.document.getElementById('main').src="home/intro.php?type=1";
break;
case 1:
//parent.main.location.href="film_intro.php?flt=newf=1";
parent.document.getElementById('main').src="home/film_intro.php?flt=newf=1";
break;
case 2:
//parent.main.location.href="film_intro.php";
parent.document.getElementById('main').src="home/film_intro.php";
break;
case 3:
parent.document.getElementById('main').src="home/intro.php?type=2";
//parent.main.location.href="intro.php?type=2";
break;
case 4:
parent.document.getElementById('main').src="home/search.php";
//parent.main.location.href="search.php";
break;
}
/**/
return true;
}
function lang_click(obj) {
var id = obj.selectedIndex;
switch(id) {
case 0:
top.location.href="../index.php?language=kor";
break;
case 1:
top.location.href="../index.php?language=eng";
break;
case 2:
top.location.href="../index.php?language=chn";
break;
case 3:
top.location.href="../index.php?language=jap";
break;
}
}
Суровый северокорейский JS. http://korfilm.com.kp/
Сам сайт в iframe, при нажатии по кнопке меню происходит смена адреса.
Видать сделано для того чтоб сай не был "резиновым" или северокорейский лидер указал чтоб не палили адреса страниц. Иначе расстрел из АК-47 маде ин КНДР.
CrashTesterAnusov 21.09.2016 12:44 # −64
BagorCtretora 28.09.2016 03:11 # −65
CrashTesterAnusov 28.09.2016 03:46 # −64
Lure Of Chaos 23.09.2016 23:14 # 0
guest 24.09.2016 20:31 # 0
guest 27.09.2016 14:57 # 0
function menu_click(id){
var src=[undefined,"film_intro.php?flt=newf=1","f ilm_intro.php","intro.php?type=2","searc h.php","intro.php?type=1"]
parent.document.getElementById('main').s rc="home/"+src[id];
/**/
return true;
}
function lang_click(obj){
var lang=["kor","eng","chn","jap"];
top.location.href="../index.php?language="+lang[obj.selectedIndex];
}
guestinho 29.09.2016 18:06 # +1