$(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; }); } } }); })