NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
## 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"]' }); ```