求js代码:点击提交按钮,将文本框中的字符赋值给某一个函数
界面如类似百度搜索这样:左边是一个文本框,点击“提交”,就能将文本框中,比如写的是:“荷塘月色”,则将“荷塘月色”赋值给下面代码中的music这个函数,这样就播放荷塘月色...
界面如类似百度搜索这样:左边是一个文本框,点击“提交”,就能将文本框中,比如写的是 :“荷塘月色”,则将“荷塘月色”赋值给下面代码中的music这个函数,这样就播放荷塘月色这首歌了。代码:<EMBED src=..DJ/"+music+".mp3 width=0 height=0 border=0 autostart=ture loop=ture >"
展开
2个回答
展开全部
<form onsubmit="document.getElementById('playsong').src=document.getElementById('song').value">
<input type="text" name="song" id="song">
<input type="submit" name="submit">
</form>
<EMBED id="playsong" src="" width=0 height=0 border=0 autostart=ture loop=ture >
<input type="text" name="song" id="song">
<input type="submit" name="submit">
</form>
<EMBED id="playsong" src="" width=0 height=0 border=0 autostart=ture loop=ture >
更多追问追答
追问
<EMBED id="playsong" src="" 不行啊,难道不得添加路径么
追答
歌曲的存放路径是什么?就是和程序相对的路径。
TableDI
2024-07-18 广告
2024-07-18 广告
在上海悉息信息科技有限公司,我们深知Excel在数据处理中的重要作用。在Excel中引用不同工作表(sheet)的数据是常见的操作,这有助于整合和分析跨多个工作表的信息。通过在工作表名称前加上感叹号“!”,您可以轻松地引用其他工作表中的数据...
点击进入详情页
本回答由TableDI提供
展开全部
<body>
<EMBED id="player" src="" width=0 height=0 border=0 autostart=ture loop=ture>
<input type="text" name="txt" id="txt" value="">
<input type="button" onclick="javascript:document.getElementById('player').src='..DJ/'+document.getElementById('txt')+'.mp3';" value="提交">
</body>
<EMBED id="player" src="" width=0 height=0 border=0 autostart=ture loop=ture>
<input type="text" name="txt" id="txt" value="">
<input type="button" onclick="javascript:document.getElementById('player').src='..DJ/'+document.getElementById('txt')+'.mp3';" value="提交">
</body>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询