jquery.fileDownload.js插件导出excel
因为使用ajax导出excel会出现问题,所以现在使用jQuery.fileDownload.js插件来解决导出excel的问题 http://johnculviner.com/jquery-file-download-plugin-for-ajax-like-feature-rich-file-downloads/ 在页面引入jquery.fileDownload.js插件 1、如下所示 <scripttype="text/JavaScript"src="${resource}/js/jquery.fileDownload.js"/></script> <scripttype="text/javascript"> $("#export_confirm").on("click",function(){ varurl="${path}/admin/information/student/export"; $.fileDownload(url,{ data:{semesterId:$("#misSemester").val()}, prepareCall...
