1
2
3
4
5
6
7
8
9
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
46
47
48
49
50
51
52
53
54
55
|
<?php include_once("./_common2.php"); ?>
<style> .sale_inventory_title{height:180px;} .function_wrap{display:block;margin:0 auto;width:1200px} .sub_content{float:right;width:950px;z-index:-999;} .asideMenu{ float:left; width:220px; margin-right:20px; } .section{position:relative;display:block;width:950px;margin:0 auto;} .asideMenu{border:none;} .function_title .function_wrap h2{position:relative;float:left;color:#fff;font-size:24pt;font-weight:bold;z-index:999;margin:180px 20px 0;} .sale_inventory_menu{width:1000px;margin:0 auto} </style> <div class="sale_inventory_title"> <div class="sale_inventory_menu"> <? include("./Page/function/sale_movie_menu.html"); ?> </div> </div> <div class="sale_inventory_list"> <? //include("./Page/function/sale_movie_list.php"); // 해당페이지의 많은 이미지의 속도문제로 인해서 customermovie.php쪽에서 해당 include내용을 ajax로 따로 가져와서 sale_inventory_list 안에 넣는방식으로 변경 ajax한글 문제로 sale_movie_list.php파일의 characterset을 euckr->utf-8로 변경 ?> </div> <script> $(function () {
$(".tab_content").hide(); $(".tab_content:first").show();
$("ul.tabs li").click(function () { $(".tab_content").hide(); $(".cs_manual_content_class .tab_content").eq($(this).index()).fadeIn();
$v = $(this).find("a").html(); $vv = $v.split("<img"); $(".function_wrap h2").html($vv[0]); });
if('<?php echo $idx?>'!=''){ $(".tab_content").hide();
$(".cs_manual_content_class .tab_content").eq('<?php echo $idx;?>').fadeIn();
$this = $("ul.tabs li").eq('<?php echo $idx;?>');
$v = $this.find("a").html(); $vv = $v.split("<img"); $(".function_wrap h2").html($vv[0]);
} }); </script>
|