0

jquery を使用して、この単純なサウンドクラウド プレーヤーの例のスタイルを設定するのに長い時間を費やしました。

    <html>
<head>
    <title>test</title>
</head>

<body>
<iframe id="player" width="300px" height="50px" scrolling="no" frameborder="no" src="http://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F60778614&amp;auto_play=false&amp;show_artwork=false&amp;color=ff7733&amp;show_bpm=true"></iframe>
<script>
$('#player').contents().find('body').hide();
</script>
</body>
</html>

(.singleTrack と #widget の背景色のみを変更したいのですが、何も機能しません) 誰かが私を助けてくれますか?

どうもありがとう

4

1 に答える 1

0

iframe のコンテンツを変更することはできません。

変更を加えたい場合は、iframe の CSS を直接編集する必要があります (アクセスできる場合)。

于 2012-10-05T17:04:40.923 に答える