$(document).ready(function() { //初始化菜单 getHeaderMenuData(); //初始化页脚 getFooterMenu(); //获取页脚信息 getFooterInfo(); //计算最小高度 document.getElementById("soDetail").style.minHeight = (document.documentElement.clientHeight - 460)+"px"; $.ajax({ type : 'post', url : rootPath + '/product/getDetail', data : { id: WholeId }, success : function(data) { if(data.code == "0"){ document.getElementById("soDetail").innerHTML = data.msg.F_CONTENT; }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; }); } } }); })