您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
页面input元素复制粘贴(银行信贷模拟版)
当前为
// ==UserScript== // @name 锦城金融实训课程终结者系列之-银行信贷模拟 // @namespace http://tampermonkey.net/ // @version 0.4 // @description 页面input元素复制粘贴(银行信贷模拟版) // @license MIT // @author 廖哥 // @match https://www.baidu.com/ // @icon https://www.google.com/s2/favicons?domain=bilibili.com // @grant GM_setValue // @grant GM_getValue // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; GM_addStyle("#_mainOtherBox {position: fixed: antiquewhite; top: 0;left: 0;z-index: 10000;background-color: #ff9999;padding: 0 13px 0 8px;color:#000;font-size: 10px;}"); GM_addStyle("#other {width: 150px;height: 50px;line-height: 50px;font-size: 22px;position: fixed;top: 100px;right: 200px;}"); //创建按钮容器 let _main = document.createElement('div'); _main.class = 'otherBox'; _main.id = '_mainOtherBox'; _main.style.position="fixed"; _main.style.left="220px"; _main.style.top="20px"; _main.style['z-index']="999999"; _main.innerText = '网页快捷键:'; //创建按钮 let _copy = document.createElement('button'); _copy.innerText = '复制'; _copy.class = 'other'; _copy.addEventListener('click',()=>{ var values = []; var ids = []; var inputs = document.getElementsByTagName('input'); for(var i=0; i<inputs.length; i++){ if (inputs[i].type=='text'){ values.push(inputs[i].value); ids.push(inputs[i].id); }; }; GM_setValue('values',values); GM_setValue('ids',ids); alert('复制本页面成功!'); }); let _paste = document.createElement('button'); _paste.innerText = '粘贴'; _paste.class = 'other' _paste.addEventListener('click',()=>{ var values = GM_getValue('values',undefined); var ids = GM_getValue('ids',undefined); var inputs = document.getElementsByTagName('input'); for(var id of ids){ for(var i=0; i<inputs.length; i++){ if (inputs[i].type=='text' && inputs[i].id==id){ inputs[i].value=values[ids.indexOf(id)]; }; }; }; alert('粘贴本页面成功!'); }); //放置按钮 document.body.appendChild(_main); document.getElementById('_mainOtherBox').appendChild(_copy); document.getElementById('_mainOtherBox').appendChild(_paste); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址