My Fancy New Userscript

enter something useful

当前为 2014-09-17 提交的版本,查看 最新版本

// ==UserScript==
// @name       My Fancy New Userscript
// @namespace  http://use.i.E.your.homepage/
// @version    0.1
// @description  enter something useful
// @match    http://jwxt.sdu.edu.cn:7890/pls/wwwbks/xk.CourseInput
// @include http://jwxt.sdu.edu.cn:*/*
// @require http://code.jquery.com/jquery-2.1.1.min.js
// @copyright  2012+, You
// ==/UserScript==

setInterval(function () {
    	//var $firstNum,$secondNum;
		var $fistInput = $('input[name = p_qxrxk]');
		var $secondInput = $('input[name = p_qxrxk_kxh]');
		var $button = $('input[value = "提交"]');
		$fistInput.val("0051400110");
		$secondInput.val("602");
		$button.click();
		},1000);