样式iframe内容的问题

时间:2012-10-05 17:02:04

标签: jquery iframe

我花了很长时间用jquery设计这个简单的soundcloud播放器示例。

    <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中的bg颜色,但没有任何效果) 有人可以帮助我

非常感谢

1 个答案:

答案 0 :(得分:0)

您无法更改iframe内容。

如果您想进行一些更改,则必须直接编辑iframe的CSS(如果可以访问它)。