欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

腾讯防水墙(滑动验证码)的简单使用 https://007.qq.com

程序员文章站 2022-06-19 23:19:14
腾讯防水墙(滑动验证码)的简单使用 https://007.qq.com ......

在线体验:

快速开始:

简单使用:

1. 引入 js

<script src="https://ssl.captcha.qq.com/tcaptcha.js"></script>

2. 写一个js方法

// 腾讯防水墙 https://007.qq.com
function submitformwithcaptcha() {
    // 直接生成一个验证码对象
    var captcha = new tencentcaptcha('appid', function (res) {
        console.log(res)
        // res(未通过验证)= {ret: 1, ticket: null}
        // res(验证成功) = {ret: 0, ticket: "string", randstr: "string"}
        if (res.ret === 0) {
                //票据
                //alert(res.ticket)  
                //随机串
                //alert(res.randstr)  
                submitform();
        } 
    });
    // 显示验证码
    captcha.show(); 
}

3. 页面的某个按钮调用这个方法。

4. 后台方法(略)