function exportBook(){ //获得basePath basePath=$('#basePath').val(); ajax( { method:'GET', url:'admin/bookManageAction_exportBook.action', callback:function(data) { showInfo("数据已导出:点击下载"); } } ); } function showInfo(msg) { $("#div_info").html(msg); $("#modal_info").modal('show'); }