国图检索默认设置

默认使用isbn号检索书目信息

// ==UserScript==
// @name         国图检索默认设置
// @namespace    http://opac.nlc.cn/F/
// @version      0.3
// @description  默认使用isbn号检索书目信息
// @author       赵巍
// @match        http://opac.nlc.cn/F*
// @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").val("");
    //$("#reqterm").focus;
    document.getElementById("reqterm").focus();

    // Your code here...
})();