gpt4 book ai didi

javascript - 如何使 Google+ JavaScript 标记通过 W3C 验证

转载 作者:行者123 更新时间:2023-11-28 15:24:15 25 4
gpt4 key购买 nike

我的网站上有 Google+ 按钮。它工作正常,但 W3C 验证器显示错误:

The text content of element script was not in the required format: Expected space, tab, newline, or slash but found < instead.

这是代码:

<script src="https://apis.google.com/js/platform.js" async defer>lang:"pl";</script>

我该如何解决这个问题?

最佳答案

W3C 验证器正在提示 <script src...> 的内容标签。根据these specs ,带有 src 的脚本标签属性只能包含空格和/或 JavaScript 注释。

您可以使用the following syntax相反:

<script>
window.___gcfg = { lang: "pl" };
</script>
<script src="https://apis.google.com/js/platform.js" async defer></script>

关于javascript - 如何使 Google+ JavaScript 标记通过 W3C 验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29818935/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com