|
PHP复制代码 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<base href="<?php echo base_url(); ?>"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>员工绩效信息管理平台</title>
</head>
<frameset rows="127,*,40" frameborder="no" border="0" framespacing="0">
<frame src="<?php echo site_url('e_assess/top'); ?>" name="topFrame" scrolling="No" noresize="noresize" id="topFrame">
<frame src="<?php echo site_url('e_assess/center'); ?>" name="mainFrame" id="mainFrame">
<frame src="<?php echo site_url('e_assess/footer'); ?>" name="bottomFrame" scrolling="No" noresize="noresize" id="bottomFrame">
<noframes>
<body>你的浏览器必须支持框架才能正常显示!</body>
</noframes>
</frameset>
</html> 复制代码
以上是页面代码,在IE下显示白板,框架都不显示
以下是源文件:
HTML复制代码 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<base href="http://192.168.0.17/jwt/"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>员工绩效信息管理平台 </title>
</head>
<frameset rows="127,*,40" frameborder="no" border="0" framespacing="0">
<frame src="http://192.168.0.17/jwt/index.php/e_assess/top" name="topFrame" scrolling="No" noresize="noresize" id="topFrame">
<frame src="http://192.168.0.17/jwt/index.php/e_assess/center" name="mainFrame" id="mainFrame">
<frame src="http://192.168.0.17/jwt/index.php/e_assess/footer" name="bottomFrame" scrolling="No" noresize="noresize" id="bottomFrame">
<noframes>
<body>你的浏览器必须支持框架才能正常显示! </body>
</noframes>
</frameset>
</html> 复制代码 |
|