var index = function () { //健康养生 var inithealthy = function () { $.ajax({ type: 'post', url: '/ecology/article/healthy', success: function (data) { //判断返回值,若为object类型,即操作成功(json数据) var result = ((typeof data == 'object') && (data.constructor == object)); if (!result) { $("#ny").html(data); } } }); } //政策法规 var initpolicies = function () { $.ajax({ type: 'post', url: '/ecology/article/policies', success: function (data) { //判断返回值,若为object类型,即操作成功(json数据) var result = ((typeof data == 'object') && (data.constructor == object)); if (!result) { $("#fg").html(data); } } }); } //同启介绍 var initintro = function () { $.ajax({ type: 'post', url: '/ecology/article/intro', success: function (data) { //判断返回值,若为object类型,即操作成功(json数据) var result = ((typeof data == 'object') && (data.constructor == object)); if (!result) { $("#intro").html(data) } } }); } return { init: function () { initpolicies(); inithealthy(); initintro(); } } }();