1

无论如何通过javascript刷新BotDetect验证码?就像验证码模块上的刷新按钮一样!

BotDetect 验证码上的刷新按钮

我尝试使用以下代码查找并触发刷新链接:

var reloadLink = $("#ExampleCaptcha_ReloadIcon");
            reloadLink.trigger('click');

但它没有用。我正在使用 ASP.NET MVC 5

4

2 回答 2

1

尝试使用

$('.BDC_ReloadIcon').trigger('click');

于 2018-09-22T06:03:57.817 回答
0

尝试这个:

const captcha = $('#botdetect-captcha').captcha({ captchaEndpoint: 'simple-captcha-endpoint.ashx' });

在你需要的地方—— captcha.reloadImage();

于 2019-06-26T09:18:38.920 回答