1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!-- 구글 recaptcha V3 일부 pc에서는 이유없이 인증안되어서 접음 --> <script src='http://mjsoft.co/js/jquery-1.8.3.min.js'></script> <script src="https://www.google.com/recaptcha/api.js?render=6LdKQsoUAAAAAAfsfG9X3u6X6XJgghY8OncPo9qR"></script> <script> grecaptcha.ready(function() { grecaptcha.execute('6LdKQsoUAAAAAAfsfG9X3u6X6XJgghY8OncPo9qR', {action: 'homepage'}).then(function(token) { $("input[name='g-recaptcha-response']").val(token); $(".recap_div").html("<img src='http://mjsoft.co/inc_pack/CAPTCHA/reCAPTCHA.png'>"); }); }); </script> <input type='hidden' name='g-recaptcha-response' value=''> <div class='recap_div'>reCAPTCHA Ready</div>
|