ASP网站模版任何添加背景音乐.网站多网页之间如何实现同播一首音乐...

发布网友 发布时间:2024-10-24 02:45

我来回答

2个回答

热心网友 时间:2024-11-05 23:24

只能用框架了,index.html文件的内容为

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>带音乐的首页</title>
</head>
<frameset rows="45,*" cols="*" framespacing="0" frameborder="no" border="0" style="margin:0px; padding:0px;">
<frame src="music.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" style="overflow:scroll;overflow-x:hidden;overflow-y:auto;margin:0px;" />
<frame src="index.asp" name="mainFrame" id="mainFrame" />
</frameset>
<noframes><body>
</body>
</noframes>
</html>

music.html 为你的音乐播放页面

这样在刷新页面的时候才不至于整页刷新

热心网友 时间:2024-11-05 23:27

用框架 index.html文件的内容为<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>带音乐的首页</title>
</head>
<frameset rows="45,*" cols="*" framespacing="0" frameborder="no" border="0" style="margin:0px; padding:0px;">
<frame src="music.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" style="overflow:scroll;overflow-x:hidden;overflow-y:auto;margin:0px;" />
<frame src="index.asp" name="mainFrame" id="mainFrame" />
</frameset>
<noframes><body>
</body>
</noframes>
</html>

music.html 音乐播放页面 这样刷新的时候就不会整页刷新了

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com