Youtube 订阅按钮未显示
Youtube subscribe button not showing
我试图在本地主机中包含一个 YouTube 订阅按钮,但它似乎不起作用,而在 JSfiddle 中它工作得很好。难道我做错了什么?我正在使用来自 https://developers.google.com/youtube/youtube_subscribe_button
的代码
我在本地主机上的代码:
<!DOCTYPE html>
<html>
<head>
<title>Testing a YouTube button</title>
<script src="https://apis.google.com/js/platform.js"></script>
</head>
<body>
<div class="g-ytsubscribe" data-channelid="UCWTfbcQsyNLv1ZLsZrhVW2w" data-layout="full" data-count="default"></div>
</body>
</html>
谢谢!
当我在 http://localhost
上测试它时它工作正常,但当我使用 file://
URL.
测试它时它失败了
控制台报告:
cb=gapi.loaded_0:45 Failed to execute 'postMessage' on 'DOMWindow': The target origin provided ('file://') does not match the recipient window's origin ('null').
该脚本仅在您加载 HTTP(S) 网页时有效。不要尝试在 file:
URL 上使用它(并始终查看控制台以获取错误消息!)。
我试图在本地主机中包含一个 YouTube 订阅按钮,但它似乎不起作用,而在 JSfiddle 中它工作得很好。难道我做错了什么?我正在使用来自 https://developers.google.com/youtube/youtube_subscribe_button
的代码我在本地主机上的代码:
<!DOCTYPE html>
<html>
<head>
<title>Testing a YouTube button</title>
<script src="https://apis.google.com/js/platform.js"></script>
</head>
<body>
<div class="g-ytsubscribe" data-channelid="UCWTfbcQsyNLv1ZLsZrhVW2w" data-layout="full" data-count="default"></div>
</body>
</html>
谢谢!
当我在 http://localhost
上测试它时它工作正常,但当我使用 file://
URL.
控制台报告:
cb=gapi.loaded_0:45 Failed to execute 'postMessage' on 'DOMWindow': The target origin provided ('file://') does not match the recipient window's origin ('null').
该脚本仅在您加载 HTTP(S) 网页时有效。不要尝试在 file:
URL 上使用它(并始终查看控制台以获取错误消息!)。