|
@@ -84,7 +84,7 @@ |
|
@@ -84,7 +84,7 @@ |
84
|
|
84
|
|
85
|
<volist name="jdata" id="vo">
|
85
|
<volist name="jdata" id="vo">
|
86
|
<div class="ce1">
|
86
|
<div class="ce1">
|
87
|
- <div class="ce1_title ce1{$vo.id}" >
|
87
|
+ <div class="ce1_title ce1{$vo.id}" onclick="title($vo.id)" >
|
88
|
<img src="__TMPL__/public/assets/images/aicon09.png" alt="">
|
88
|
<img src="__TMPL__/public/assets/images/aicon09.png" alt="">
|
89
|
<h2>{$vo.name}</h2>
|
89
|
<h2>{$vo.name}</h2>
|
90
|
</div>
|
90
|
</div>
|
|
@@ -177,6 +177,21 @@ |
|
@@ -177,6 +177,21 @@ |
177
|
|
177
|
|
178
|
}
|
178
|
}
|
179
|
|
179
|
|
|
|
180
|
+ //点击二级分类
|
|
|
181
|
+ function title(id){
|
|
|
182
|
+
|
|
|
183
|
+ $('.ce1_title').children('h2').css({color:""});
|
|
|
184
|
+ $('.ce1_2_Li_title').children('h3').css({color:""});
|
|
|
185
|
+ $('.ce1'+id).children('h2').css({color:"red"});
|
|
|
186
|
+ $.post("{:url('Product/erji')}",{id:id},function(data){
|
|
|
187
|
+ shuju = JSON.parse(data);
|
|
|
188
|
+ $('.biaoti').text(shuju.post_title);
|
|
|
189
|
+ $('.zhaiyao').text(shuju.post_excerpt);
|
|
|
190
|
+ $('.pro_right_txt').html(shuju.post_content);
|
|
|
191
|
+ });
|
|
|
192
|
+
|
|
|
193
|
+ }
|
|
|
194
|
+
|
180
|
|
195
|
|
181
|
|
196
|
|
182
|
//点击查询单个文章
|
197
|
//点击查询单个文章
|