默认使用isbn号检索书目信息
当前为
// ==UserScript==
// @name 国图检索默认设置
// @namespace http://opac.nlc.cn/F/
// @version 0.1
// @description 默认使用isbn号检索书目信息
// @author 赵巍
// @match http://opac.nlc.cn/F/*
// @require http://code.jquery.com/jquery-1.11.0.min.js
// @run-at document-end
// @grant none
// ==/UserScript==
(function() {
'use strict';
$("#find_code").val("ISB");
//$("#reqterm").focus;
document.getElementById("reqterm").focus();
// Your code here...
})();