$(function(){ //打开导入modal $(".import").click(function(){ $("#import_modal").modal({ backdrop:"static", keyboard:false, show:true }); }); $("input[name='serviceDictId']").click(function(){ }); $("input[name='regionDictIds']").click(function(){ }); }); /** * 模板下载 * TODO 后期修改为传入regionDictId * */ function downLoadTemplate(path){ var obj={ "regionDictId":$("input[name='regionDictIds']:checked").val() ,"serviceDictId":$("input[name='serviceDictId']:checked").val() ,"requestId":$("select[name='requestId']").val() }; var params = $.param(obj); document.location.href = path+'/ntc/iplist/import/template?' + params; }