0

使用以下代码,小部件右下角 Soundcloud 上的声音链接有效(Firefox/OSX):

<iframe id="sc-widget" src="http://w.soundcloud.com/player/?url=http://soundcloud.com/k0s/bcn07" width="100%" height="166" scrolling="no" frameborder="no"></iframe>
<script src="http://w.soundcloud.com/player/api.js" type="text/javascript"></script>

但是当我添加show_comments=false为查询参数时它停止工作:

<iframe id="sc-widget" src="http://w.soundcloud.com/player/?url=http://soundcloud.com/k0s/bcn07&show_comments=false" width="100%" height="166" scrolling="no" frameborder="no"></iframe>
<script src="http://w.soundcloud.com/player/api.js" type="text/javascript"></script>

我究竟做错了什么?

4

1 回答 1

0

那是小部件中的一个错误——评论的容器仍然被添加到页面中并且它覆盖了链接。我现在已经对其进行了修复,您应该会在几分钟内看到它已修复。

此外,该url参数应指向 API 端点:例如:

代替

.../player/?url=http://soundclou...

它应该是:

.../player/?url=http://api.soundclou...
于 2012-06-26T09:02:11.113 回答