让一个框架播放器显示在网页底部的代码

来源:百度知道 编辑:UC知道 时间:2024/05/30 16:12:42
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>简单快乐</title>
</head>
<frameset framespacing="0" border="0" frameborder="0" rows="18,*">
<frame name="player"scrolling="no" align=center marginWidth=0 marginHeight=0 src="mp.html">
<frame name="main" scrolling="yes" noresize marginwidth="0" marginheight="0" src="index.php">
<noframes></noframes>
</frameset>
</html>

index现在的代码是这个样子 不过加载后只能在顶部显示..要加入什么样的代码可以实现显示在底部?

只要将你的代码这么变更一下就达到你的要求了

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>简单快乐</title>
</head>
<frameset framespacing="0" border="0" frameborder="0" rows="*,18">
<frame name="main" scrolling="yes" noresize marginwidth="0" marginheight="0"
src="index.php">
<frame name="player"scrolling="no" align=center marginWidth=0 marginHeight=0
src="mp.html">
<noframes></noframes>
</frameset>
</html>