0

我希望在 jquery 移动页面中使用 soundcloud。我复制粘贴以下内容:

<iframe width="100%" height="166" scrolling="no" frameborder="no" src="http://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F63422331&show_artwork=true"></iframe>

来自http://soundcloud.com/amar-dj/

它在 chrome 浏览器中运行良好,但是当我在移动设备上上传 jquery 页面时,曲目不播放。此外,我希望自定义 soundcloud 小部件以包括曲目、播放按钮以及艺术家和曲目名称。没有喜欢或分享按钮!为此,我写了以下内容:

<iframe width="100%" height="166" scrolling="no" frameborder="no" src="http://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F63422331&amp;&show_artwork=false&show_comments=false&show_playcount=false&liking=false&sharing=false&buying=false;color=ff7700"></iframe>

除了点赞按钮之外的所有按钮都消失了。如何隐藏喜欢按钮?

4

1 回答 1

0

感谢您发现此问题,您现在应该可以通过提供buying=false参数来隐藏购买链接(问题已解决并已部署)。

至于like 按钮,请注意在您的示例中,您没有在 and 之间放置一个 & 符号( &) 。如果添加它,您将看不到按钮。liking=falsecolor=ff7700like

于 2012-11-27T14:15:46.827 回答