New Google reCaptcha: How to change text “I'm not a robot”

前端 未结 6 2099
甜味超标
甜味超标 2021-02-05 08:32

I\'ve installed the latest Google reCaptcha tool on our yoga website. Now the users are confused about the text \"I\'m not a robot\" that appears next to the checkbox.

M

6条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-05 08:52

    This is not possible because the Same Origin Policy prohibits any script (that's on your site) trying to access an iframe (the captcha) that has another origin (Google server).

    We should have no problem running the code below if we own both servers :)

    $( ".g-recaptcha > div > div > iframe" ).contents().find( "#recaptcha-anchor-label" ).text('Custom Text');
    

提交回复
热议问题