马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 wiselin 于 2023-2-13 16:49 编辑
需求就是登录fishc.com.cn后点击自己的用户进入我的空间,目前写的代码可登录成功,但成功后该如何写才能自动点击用户名那里呢?用的是油猴脚本// ==UserScript==
// @name 我的专属脚本
// @namespace https://fishc.com.cn/
// @version 0.1
// @description 自动化操作
// @match https://fishc.com.cn/
// @require https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.5.1.min.js
// @grant none
// @run-at document-start
// ==/UserScript==
$(function(){
$('#ls_username').val('我的用户名');
$('#ls_password').val('我的密码');
$('button[tabindex="904"]').click();
})
本帖最后由 isdkz 于 2023-2-13 21:11 编辑
我去,才发现把调用给漏掉了。jquery 获取不到元素,不知道为什么,我还没找出原因
// ==UserScript==
// @name 我的专属脚本
// @namespace https://fishc.com.cn/
// @version 0.1
// @description 自动化操作
// @match https://fishc.com.cn/*
// @require https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.5.1.min.js
// @grant none
// ==/UserScript==
(function(){
if(document.querySelector('#um > p:nth-child(2) > strong > a') == null){
document.querySelector('#ls_username').value = '账号';
document.querySelector('#ls_password').value = '密码';
document.querySelector('#lsform > div > div > table > tbody > tr:nth-child(2) > td.fastlg_l > button').click();
document.querySelector('#um > p:nth-child(2) > strong > a').click();
}
})();
|