两个网页如何承接
// ==UserScript==// @name 健康打卡
// @namespace http://tampermonkey.net/
// @version 0.1
// @descriptiontry to take over the world!
// @author You
// @match http://old.peihua.cn/stuyqcj/login.aspx
// @match http://old.peihua.cn/stuyqcj/index.aspx?name=
// @icon https://www.google.com/s2/favicons?sz=64&domain=peihua.cn
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
//登录
document.querySelector('#UsernameTextbox').value=''
document.querySelector('#PasswordTextbox').value=''
document.querySelector('#LoginButton').click()
})();
//上面的可以完成,下面的就不进行
//填写表单
(function() {
'use strict';
// Your code here...
document.querySelector('#ssq').value='陕西省咸阳市秦都区'
document.querySelector('#A2').checked=true
document.querySelector('#B4').checked=true
document.querySelector('#C2').checked=true
document.querySelector('#D3').checked=true
document.querySelector('#F1').checked=true
document.querySelector('#F2').checked=true
document.querySelector('#F3').checked=true
document.querySelector('#F4').checked=true
document.querySelector('#Button1').click()
})(); 网页a跳转到网页b之后,怎么实现脚本的运行
日经问题……脚本加载的时候元素没有加载
建议仔细阅读
[油猴脚本开发指南]基本油猴编程的一些常见误区
https://bbs.tampermonkey.net.cn/thread-835-1-1.html
[油猴脚本开发指南]基本油猴编程的一些常见误区(二)
https://bbs.tampermonkey.net.cn/thread-1537-1-1.html
油猴脚本开发指南教程目录
https://bbs.tampermonkey.net.cn/thread-184-1-1.html
楼上正解
如果切换页面不刷新网页也能是spa网页
[油猴脚本开发指南]监听前端通用路由改变方法
https://bbs.tampermonkey.net.cn/thread-1729-1-1.html
[油猴脚本开发指南]监听Vue路由改变
https://bbs.tampermonkey.net.cn/thread-1727-1-1.html
页:
[1]