用chatgpt4 写的js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
| var btnLinks = document.querySelectorAll('.btn-link');
btnLinks.forEach(function(btnLink) { var inputElement = btnLink.querySelector('input'); if (inputElement) { inputElement.click(); }; });
setTimeout(function() {
var iframes = document.querySelectorAll('iframe');
iframes.forEach(function(iframe) { try { var iframeDocument = iframe.contentDocument || iframe.contentWindow.document;
var radioInputs = iframeDocument.querySelectorAll('input[type="radio"].voteItem.speak2');
radioInputs.forEach(function(input) { var label = input.closest('label'); if (label) { var span = label.querySelector('span'); var p = span.querySelector('p'); if (p && p.textContent.trim().startsWith('A')) { input.click(); } } }); } catch (e) { console.error('Error accessing iframe content:', e); } }); }, 3000);
|
默认全选A,一个个点真的累死人,gpt3沟通无效,果断寻找gpt4
🤯 随便聊聊 · LobeChat (bronya.io)
更多gpt见https://linux.do
使用
首先需要edge/chrome/firefox浏览器。2345,360,qq浏览器也行,但是不推荐,也未尝试
所以首先
第一步
1.[进入评价系统,登录账号]https://www.pingjiaxitong.com/liaocheng1zhong/
2.选择评价任务
第二步
1.点击键盘上的F12 一般是右侧或者下侧弹出一个窗口,寻找控制台
2.无脑粘贴 下面代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| console.log('Powered by chatgpt') var btnLinks = document.querySelectorAll('.btn-link');
btnLinks.forEach(function(btnLink) { var inputElement = btnLink.querySelector('input'); if (inputElement) { inputElement.click(); }; });
setTimeout(function() {
var iframes = document.querySelectorAll('iframe');
iframes.forEach(function(iframe) { try { var iframeDocument = iframe.contentDocument || iframe.contentWindow.document;
var radioInputs = iframeDocument.querySelectorAll('input[type="radio"].voteItem.speak2');
radioInputs.forEach(function(input) { var label = input.closest('label'); if (label) { var span = label.querySelector('span'); var p = span.querySelector('p'); if (p && p.textContent.trim().startsWith('A')) { input.click(); } } }); } catch (e) { console.error('Error accessing iframe content:', e); } }); }, 2500);
|
回车等待2.5秒 ~~当然是2.5 ~ ~
42的特色文化
然后就神奇并不出意料的全选了A,
然后。。
Version 2.0 自动提交
ps:慎用,注意检查
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
| console.log('Powered by ChatGPT');
var btnLinks = document.querySelectorAll('.btn-link');
btnLinks.forEach(function(btnLink) { var inputElement = btnLink.querySelector('input'); if (inputElement) { inputElement.click(); } });
setTimeout(function() { console.log('10秒后操作开始...');
var iframes = document.querySelectorAll('iframe'); let aOptionsClicked = false; iframes.forEach(function(iframe) { try { var iframeDocument = iframe.contentDocument || iframe.contentWindow.document; var radioInputs = iframeDocument.querySelectorAll('input[type="radio"].voteItem.speak2'); radioInputs.forEach(function(input) { var label = input.closest('label'); if (label) { var span = label.querySelector('span'); var p = span.querySelector('p'); if (p && p.textContent.trim().startsWith('A')) { console.log('找到以 "A" 开头的选项,模拟点击...'); input.click(); aOptionsClicked = true; } } }); } catch (e) { console.error('Error accessing iframe content:', e); } }); if (aOptionsClicked) { console.log('点击完 A 开头选项后,尝试点击提交按钮...'); var submitButton = document.querySelector('#pj_submit'); if (!submitButton) { console.warn('主文档中未找到提交按钮,尝试在 iframe 中查找...'); iframes.forEach(function(iframe) { try { var iframeDocument = iframe.contentDocument || iframe.contentWindow.document; submitButton = iframeDocument.querySelector('#pj_submit'); if (submitButton) { console.log('在 iframe 中找到提交按钮'); submitButton.click(); } } catch (e) { console.error('Error accessing iframe content for submit button:', e); } }); } else { console.log('在主文档中找到提交按钮'); submitButton.click(); } if (!submitButton) { console.error('未能在主文档或任何 iframe 中找到提交按钮'); } } else { console.warn('未找到任何以 "A" 开头的选项,未执行提交操作'); } }, 10000);
|
免责声明
没有设置直接自动提交,可以自己检查一下,对于某些只能选三个A的,他也能多选上,so,注意检查,出事与我无关