gpt4 book ai didi

javascript - 使用 javascript 访问 getElementById 的问题

转载 作者:可可西里 更新时间:2023-11-01 13:17:26 25 4
gpt4 key购买 nike

我有这段代码,但我不知道为什么它不起作用

<html>
<head>
<title>Test</title>
<script type="text/javascript">
function StopBackgroundMusic()
{
var MusicObj = document.getElementById("BackgroundMusic");

MusicObj.data = "http://www.oreillynet.com/examples/oreilly/digitalmedia/2005/02/ableton_intro_0205_gtr.mp3";
MusicObj.autoplay = "false";
MusicObj.autostart = "false";


return MusicObj;
}
</script>
</head>
<body>


<OBJECT ID="BackgroundMusic" data="http://www.oreillynet.com/examples/oreilly/digitalmedia/2005/02/ableton_intro_0205_gtr.mp3" TYPE="audio/mpeg" height="0" width="0">
<PARAM NAME="autostart" VALUE="true">
<PARAM NAME="autoplay" VALUE="true">

</OBJECT>

<form>


<input type='button' onclick='StopBackgroundMusic()' value='Stop music'/>

</form>
</body>
</html>

最佳答案

尝试将数据设置为null,而不是再次设置音乐 URL。

另一种方法是在您按下停止按钮时删除对象节点:

function StopBackgroundMusic()
{
var MusicObj = document.getElementById("BackgroundMusic");
MusicObj.parentNode.removeChild(MusicObj);
}

关于javascript - 使用 javascript 访问 getElementById 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4889704/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com