模态框项目——js代码
$(document).ready(function(){ initSelect(); $("#registerUpdCount").attr('value',0); $("#registerShopNo").attr('value', $("#shopInfo").html().split(" ")[0]); getData(1); }); function initSelect(){ $.ajax({ type: "GET", contentType: "application/json", url: "/hq/document/initSelect", success: function(data){ var html = ""; $.each(data,function(key,value){ html += "<option value='"+key+"'>"+value+"</option>"; }) $("#docLicenceNo").append(html); } }) } function getData(docType){ $.ajax({ type: "GET", contentType: "application/json", url: "/hq/document/", data:"docType="+docType, success: function