// ==UserScript== // @name 导出毕业Excel // @namespace Violentmonkey Scripts // @icon // @version 1.0.0 // // @match http*://172.16.100.61:8080/leaschool/content/menu/leaschool/handle/* // @grant none // // @author 吴旺华 // @require https://cdn.jsdelivr.net/npm/xlsx/dist/xlsx.full.min.js // @description // ==/UserScript== const btn=document.createElement('button') btn.innerHTML='导出表格' document.body.appendChild(btn) btn.addEventListener('click',exportToExcel) function exportToExcel() { const wb = XLSX.utils.table_to_book(document.getElementById('data_table')); XLSX.writeFile(wb, '毕业.xlsx'); }