Greasy Fork

Greasy Fork is available in English.

多彩贵州党史答题

2021/7/7下午7:20:32

当前为 2021-07-07 提交的版本,查看 最新版本

// ==UserScript==
// @name        多彩贵州党史答题
// @namespace   Violentmonkey Scripts
// @match       https://*.gog.cn/*
// @grant       none
// @version     1.0
// @require     https://cdn.staticfile.org/jquery/1.9.1/jquery.min.js
// @author      -Lightr
// @description 2021/7/7下午7:20:32
// ==/UserScript==
$('#exam_body').append('<div id = "anniu"><button type="button" id="anniu-sub">显示答案</button></div>')
$('#exam_body').append('<div id = "daan"></div>')
function getanswer_sk(){
  if ($('.item_current').data('answer')){
    $('#daan').html('<b><p style="color: red;font-size: 20px;">本题答案为:'+ $('.item_current').attr('data-answer')+'</p></b>')

  }
};
$('#anniu-sub').click(function () {
  getanswer_sk();
});
$('.next-subject').click(function () {
  $('#daan').html('')
  setTimeout(function(){getanswer_sk();},1500);
});