nbstudy-mobile-save

Auto save and input your mobile number!

// ==UserScript==
// @name         nbstudy-mobile-save
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  Auto save and input your mobile number!
// @author       Sin_up
// @match        https://www.nbstudy.gov.cn:81/vm/login.jsp
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    $('#mobver').on('change', function(){
        localStorage.setItem("mob", $("#mobver").val());
    });
    localStorage.getItem("mob")
        ? $("#mobver").val(localStorage.getItem("mob"))
    : "";
})();