💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## HTML元素 ``` <img class="img-fluid" id="captcha" src="../../public/images/x.gif" alt="{:lang('user_captcha')}" data-toggle="captcha"/> ``` ## JS调用方法 ``` window.daicuo.captcha.init({ //被监听元素 selector: '[data-toggle="captcha"]', //元素被点击 onClick: function(e) { e.attr('src', daicuo.config.root+'index.php?s=captcha&rand='+Math.random()).css({cursor:'pointer'}); } }); ``` ## 事件 * **onClick**:function 点击验证码的回调函数 ## 方法 * init(options) 初始化调用方法,参数如上 * refresh(options) 刷新验证码 ``` //刷新验证码 window.daicuo.captcha.refresh({ selector: '[data-toggle="captcha"]' }); ```