0

我尝试将元标记添加到标题:

但它没有用。

我尝试了这个选项,但仍然没有工作,因为兼容视图中没有 google.com。

谁能帮帮我?

<!DOCTYPE html> <html lang="en"> <head> <title>How to Integrate Google “No CAPTCHA reCAPTCHA” on Your Website</title> <script src='google.com/recaptcha/api.js'></script> </head> <body> <form action="" method="post"> <label for="name">Name:</label> <input name="name" required><br /> <label for="email">Email:</label> <input name="email" type="email" required><br /> <div class="g-recaptcha" data-sitekey="###"></div> <input type="submit" value="Submit" /> </form>
4

2 回答 2

1

您应该像这样包含必要的 JavaScript 资源:

<script src='https://www.google.com/recaptcha/api.js'></script>

data-sitekey此外,在属性中设置正确的站点键。

结果在 IE 中是这样的:

在此处输入图像描述

如果在 IE 11 中仍然无法正常工作,您可以使用 F12 开发工具检查控制台中是否有任何错误。

于 2020-05-22T02:59:58.660 回答
0

实际上它是第一次在 IE 中加载加载。因此,我尝试通过附加当前日期时间来使 url 每次都不同。

" https://www.google.com/recaptcha/api.js?render= " + EncodeUrl(SiteKey) + "&time="+CurrTime()

它开始工作了。

于 2020-05-31T06:18:34.480 回答