js资源导出(导出表格)

$('#exportExcel').click(function(){
            doExportExcel();
        })
        function doExportExcel() {
            var a = document.createElement('a');
            a.href = '/admin/rest/other/resource/export';
            a.download = "资源管理";
            a.target = '_blank';
            a.click();
        }

 

你可能感兴趣的:(js资源导出(导出表格))