$(document).ready(function() { //鍒濆鍖栬彍鍗 getHeaderMenuData(); //鍒濆鍖栭〉鑴 getFooterMenu(); //鑾峰彇椤佃剼淇℃伅 getFooterInfo(); //鑾峰彇鏁版嵁 getShowData(); }) function getShowData(){ $.ajax({ type : 'post', url : rootPath + '/cloudservice/getCloudSvrList', data : { }, success : function(data) { if(data.code == "0"){ initList(data); }else{ layer.alert(data.msg,{icon: 7},function(){ window.location.href = rootPath; }); } }, error : function(XMLHttpRequest, textStatus, errorThrown) { if(errorThrown == "Forbidden" || XMLHttpRequest.status == "403" || XMLHttpRequest.status == "404"){ layer.alert(ForbiddenMsg,{icon: 7},function(){ window.location.href = rootPath; }); }else{ layer.alert(errorThrown,{icon: 7},function(){ window.location.href = rootPath; }); } } }); } function initList(data){ document.getElementById("cloudSvrDiv").innerHTML = ""; var context = ""; for(var i=0;i'; }else{ context += ''; } context += ''+ '
'+data.data[i].F_TITLE+''+ '

'+data.data[i].F_BRIEF_INTRO+'

'+ '
'+ '
'+ ''; } document.getElementById("cloudSvrDiv").innerHTML = context; }