我对新的可嵌入Youtube订阅按钮有问题。当我尝试使用此代码时:
<script src="https://apis.google.com/js/plusone.js"></script>
<div class="g-ytsubscribe" data-channel="youtube" data-layout="default"></div>
不显示任何按钮。我正在从硬盘驱动器运行一个html5文件,我什至尝试下载此js文件并从同一位置运行,但没有任何反应。该代码与"在线html编辑器"完美配合,但不在我的文件中。
我可以使用 iframe 选项并且它可以工作(
<iframe data-gapiattached="true" frameborder="0" scrolling="no" height="25px" width="174px" style="padding-right: 10px"
src="http://www.youtube.com/subscribe_embed?bsv&usegapi=1&channel=Youtube">
</iframe></h6>
<script src="https://apis.google.com/js/plusone.js"></script>
),但我想使用"完整布局",我想知道为什么我不能使用任何基于 jscript 的按钮,例如 facebook "喜欢" - 只有 iframe。
对新手有什么提示吗? ;)
我正在从硬盘驱动器运行 html5 文件
这是你的问题。改为通过 HTTP 运行它。如果需要,请安装本地网络服务器。