Google reCaptcha IE8

前端 未结 1 700
情歌与酒
情歌与酒 2021-01-18 14:39

Is Google reCaptcha v2 supported in Internet Explorer 8?

If not is there any suitable Internet Explorer 8 compatible captchas?

I am seeing a issue where the

相关标签:
1条回答
  • 2021-01-18 14:59

    The code I ended up using to support IE8 was the following.

    <!--[if !IE 8]><!--><script src="https://www.google.com/recaptcha/api.js"></script><!--<![endif]-->
    <!--[if IE 8]><script src="https://www.google.com/recaptcha/api.js?fallback=true"></script><![endif]-->
    

    The difference being fallback=true is set which reverts back to V1 of recaptcha.

    0 讨论(0)
提交回复
热议问题