function initGo(){ var FindTableName=GetQueryString(“tab_name”) //前端ajax解决不同主机端口的请求 var u=“http://”+window.location.host+"/jflow-web/hzsc_formData" $.ajax({ type: ‘POST’, url:u, data:{FindTableName}, dataType: ‘json’, success:function(res){ if(typeof(res.otb)==“object”){ if(res.otb.length>0){ goList(res) }else{ $("#hzsc_data_head").html(“未提交表单数据”); } }else{ $("#hzsc_data_head").html(“未提交表单数据”); } } }); }