// ==UserScript== // @name 清华大学本科生中文成绩单预览 // @namespace http://tampermonkey.net/ // @version 0.1 // @description →http://jxgl.cic.tsinghua.edu.cn/jxpg/f/zzzc/v_zzfw_zzdy_dd/bks_dzcjd // @author Rika // @match http://jxgl.cic.tsinghua.edu.cn/jxpg/f/zzzc/v_zzfw_zzdy_dd/bks_dzcjd // @require http://code.jquery.com/jquery-3.3.1.min.js // @downloadURL none // ==/UserScript== (function() { 'use strict'; if (location.pathname === '/jxpg/f/zzzc/v_zzfw_zzdy_dd/bks_dzcjd') { $('
\n' + '\t\t\t\t\t
\n' + '\t\t\t\t\t\t
本科生中文成绩单预览
\t\n' + '\t\t\t\t\t
\n' + '\t\t\t\t\t
\n' + '\t\t\t\t\t\t\t\n' + '\t\t\t\t
\t\t\t\t\t\t\t\t\n' + '\t\t\t
').insertAfter('#disabled_button') $.post('/jxpg/f/zzzc/v_zzfw_zzdy_dd/bks_dzcjd_lx', {cjdlx: "yxw_zw"}, function (result) { $("#pdf-preview").html(result); // Or whatever you need to insert the result }, 'html'); } // Your code here... })();