Re: [闲聊] 计算总损益教学-使用浏览器开发人员工具跑语法即可算出

楼主: nlpsl202 (大雄)   2024-05-12 10:56:35
※ 引述《nlpsl202 (gogogogogo98)》之铭言:
: 新版运彩计算总损益方式跟之前不太一样
: 全程都是使用电脑操作
: 首先:登入运彩>按右上角人头>我的帐户>我的投注>已派彩>自订日期区间>
: 一次最多一个月,所以就先查你要的月份1日~最后1日,然后疯狂按最下面的显示
: 更多,直到没得按,让整个月份的投注纪录都出现为止,然后按下F12打开浏览器
: 开发人员视窗,切换到Console页签
: 先输入以下程式码然后按下enter:
: var script = document.createElement('script');
: script.src =
: 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js';
: document.getElementsByTagName('head')[0].appendChild(script);
: 再输入以下程式码按下enter:
: var total_lose = 0;
: $('.mgsstyles__BetDetailsContentContainer-sc-rnwzqa-14')
: .find('.src__SpanAmount-sc-9itihn-0').each(function()
: {
: var money=parseInt($(this).text().replace('NT$', '').replace(',',
: '').replace(' ', ''));
: total_lose-=money;
: });
: $('.flexboxgrid__RowNew-sc-trccvo-1')
: .find('.src__SpanAmount-sc-9itihn-0').each(function()
: {
: var money=parseInt($(this).text().replace('NT$', '').replace(',',
: '').replace(' ', ''));
: total_lose+=money;
: });
: total_lose
: 最后的数字就是损益了
: 如下图
: https://imgur.com/a/hNfgADj
: 要查多个月份就是以上动作重复跑多个月份的再加起来
: 就会看到机掰的数字,干
听说最近有更新网站,目前程式码算不到总损益,我看了一下的确是孬刚有改所以爬虫爬
不到,这边提供新的程式码,其实只是一个数字从14变成15
第一段程式码不变
第二段改成:
var total_lose = 0;
$('.mgsstyles__BetDetailsContentContainer-sc-rnwzqa-15')
.find('.src__SpanAmount-sc-9itihn-0').each(function()
{
var money=parseInt($(this).text().replace('NT$', '')
.replace(',', '').replace(' ', ''));
total_lose-=money;
});
$('.flexboxgrid__RowNew-sc-trccvo-1').find('.src__SpanAmount-sc-9itihn-0')
.each(function()
{
var money=parseInt($(this).text().replace('NT$', '')
.replace(',',
'').replace(' ', ''));
total_lose+=money;
});
total_lose

Links booklink

Contact Us: admin [ a t ] ucptt.com