$(function(){
//青果园地
$.getjson("../js/json/culture_gardenplot.json", "", function(data) {
var str = '';
$.each(data.gardenplot, function(i, item) {
str += '
'
})
$('#two').html(str);
});
//青果讲坛
$.getjson("../js/json/culture_forum.json", "", function(data) {
var str = '';
$.each(data.forum, function(i, item) {
str += ''+
'
'+
'
'
})
$('#three').html(str);
});
//活动回顾
$.getjson("../js/json/culture_activityreview.json", "", function(data) {
var str = '';
$.each(data.activityreview, function(i, item) {
str += ''
})
$('#four').html(str);
});
//打开详情页
opendetail = function(tabname,liid){
window.open("culturedetail.html?tab="+tabname+"&id="+liid);
}
$('#mytab li').on('click',function(){
var destext = $(this).text();
$('.toggledes').text(destext)
})
})