첫 번째 iframe에서 두 번째 iframe에서 플레이어를 재생할 수없는 다음 코드가 있습니다. 링크가 노래를 재생하는 경우이 잘 작동하지만 메인 페이지에 아닌 처음은 iframeiframe이 모두 동일한 페이지에있을 때 iframe 소스를 다른 iframe으로 변경하십시오.
<script type="text/javascript">
function music(dir) {
alert(dir);
var iframe = document.getElementById("player");
iframe.src = dir;
}
</script>
<iframe src="home.php" frameborder="0" scrolling="no" width="100%" height="100%" style="background:#993333"></iframe>
<iframe id="player" src="player.php" frameborder="0" scrolling="no" width="400px" height="100px" style="background:#66FF99"></iframe>
//home.php
<a href="#" onclick="return music('player.php?item=test2')" >Song2</a>
//player.php
<object type="application/x-shockwave-flash" data="dewplayer.swf?mp3=mp3/music.mp3&autostart=1" width="200" height="20" id="dewplayer"><param name="wmode" value="transparent" />
</object>
내부