发布网友 发布时间: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 音乐播放页面 这样刷新的时候就不会整页刷新了