我制作了一个 index.html 文件,其中包含此脚本。
<html>
<body>
<object type="application/x-shockwave-flash" data="player-mini.swf?mp3=file:\\\D:\music\aa.mp3" width="160" height="20" id="dewplayer-mini"><param name="wmode" value="transparent" /><param name="movie" value="player-mini.swf?mp3=file:\\\D:\music\aa.mp3" /></object>
</body>
</html>
我使用 Dew Player 作为我网站的音频播放器,问题是,当我使用localhost打开这个index.html文件时,mp3不能播放,而当我打开这个index.html文件时直接[双击],然后mp3播放正常。
我知道问题是Mp3文件路径,请告诉我如何给出mp3文件路径,以便它在localhost中正常工作。 [露水球员不是问题]。
答案 0 :(得分:0)
您正在使用file:\\\
协议
将您的移除file:\\\
从您的路径更改为文件(将aa.mp3
移至index.html
存在的位置
<html>
<body>
<object type="application/x-shockwave-flash" data="player-mini.swf?mp3={Path_TO_Mp3}/aa.mp3" width="160" height="20" id="dewplayer-mini"><param name="wmode" value="transparent" /><param name="movie" value="player-mini.swf?mp3={Path_TO_Mp3}/aa.mp3" /></object>
</body>
</html>