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"); ?> <meta http-equiv="X-UA-Compatible" content="IE=8,IE=9,IE=10,chrome=1"> <? include("./Page/common/header.php"); ?> <style> .sale_inventory_title{height:430px;background:url('./images/millennium/function/sale_inventory_title.jpg');} .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_inventory_menu.html"); ?> </div> </div> <div class="sale_inventory_list"> <? include("./Page/function/sale_inventory_list.php"); ?> </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>
<? include("./Page/common/footer.php"); ?>
|