|
发表于
2022-3-18 23:08:50
|
显示全部楼层
大哥 我的为什么没有反应啊
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://bbs.tampermonkey.net.cn/space-uid-4.html
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
document.querySelector("#username_LQWLd").value="8888"
document.querySelector("#password3_LQWLd").value="888"
document.querySelector("#loginquestionid_LQWLd").click
document.querySelector("#loginanswer_LQWLd").value="888"
document.querySelector(".pn pnc").click
})(); |
|