武汉交通职业学院深澜自动登录

武汉交通职业学院校园网的保存密码及自动登陆

// ==UserScript==
// @name         武汉交通职业学院深澜自动登录
// @description  武汉交通职业学院校园网的保存密码及自动登陆
// @version 1.0
// @namespace
// @author       worthy
// @match        http://192.168.180.160/*
// @grant        none
// @license MIT
// @namespace https://greasyfork.org/users/922770
// ==/UserScript==

(function() {
    var user="填写你的学号";
    var pass="填写你的密码";
    document.evaluate('//form//div//div//input',document).iterateNext().value=user
    document.evaluate('//form//div//div//input[@type="password"]',document).iterateNext().value=pass
    document.evaluate('//button',document.body, null, 9, null).singleNodeValue.click();
   // document.getElementsByTagName("button")[0].onclik=function(){}
})();