这是我在localhost中播放音频文件的代码,并收到错误消息“无法打开位置;您可能没有权限打开该文件。”请提前帮助我Thnx
<!DOCTYPE html>
<html>
<head>
<center>
<script language="JavaScript" type="text/javascript">
function getPath() {
playId.src = "/root/Desktop/103.mp3";
}
</script>
</center>
</head>
<body>
<input type="submit" value="PLAY PATH" onclick="getPath()" />
<embed height="50" width="100" id="playId">
</body>
</html>
答案 0 :(得分:0)
playId
未定义。您需要找到该元素,然后设置该属性。
document.getElementById('playId').src = "/root/Desktop/103.mp3";
此外,您可能需要将其设置为本地file://
网址(如果尚未提供)。