TA的每日心情 | 怒 2023-8-2 14:49 |
---|
签到天数: 14 天 [LV.3]偶尔看看II
初级工程师
- 积分
- 57
|
发表于
2022-1-26 17:37:32
|
显示全部楼层
本帖最后由 lidasha521 于 2022-1-26 17:55 编辑
这样试试
- // ==UserScript==
- // @name New Userscript
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description try to take over the world!
- // @author You
- // @match 你要匹配的地址
- // @icon https://www.google.com/s2/favicons?domain=12.163
- // @grant none
- // ==/UserScript==
- (function() {
- setTimeout(function(){
- document.querySelectorAll('.el-radio__inner')[1].click();
- },1000);
- })();
复制代码
|
|