Django使用django-simple-captcha刷新验证码js写法

Python Django使用django-simple-captcha刷新验证码js写法 Python Django使用django-simple-captcha刷新验证码

django-simple-captcha是一款不错的python验证码插件,我们可以轻易的通过pip install?captcha安装这款插件,具体方法见http://www.h5w3.com/?p=389

但是验证码需要通过js来实现,具体的写法如下:下面的是jquery写法

<script>

$('img.captcha').click(function() {

$.getJSON('/captcha/refresh/',function(json) {

// This should update your captcha image src and captcha hidden input

console.log(json);

$("img.captcha").attr("src",json.image_url);

$("#id_captcha_0").val(json.key);

});

return false;

});

</script>

 

以上是 Django使用django-simple-captcha刷新验证码js写法 的全部内容, 来源链接: utcz.com/a/425.html

回到顶部