|
在控制器中 $this->load->view("frame/frame"),导入了frame.php,这个视图是一个框架
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=utf-8" />
<title>无标题文档 </title>
</head>
<frameset rows="80,*" cols="*" framespacing="0" frameborder="yes" border="1" bordercolor="#000000">
<frame src="top.php" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />
<frameset rows="*" cols="137,*" framespacing="0" frameborder="yes" border="1">
<frame src="letf.php" name="leftFrame" scrolling="No" noresize="noresize" id="leftFrame" title="leftFrame" />
<frame src="right.php" name="mainFrame" id="mainFrame" title="mainFrame" />
</frameset>
</frameset>
<noframes><body>
</body></noframes>
</html> 复制代码
然后再浏览器调用控制器,top,left,right都是错误404,求解答!还有,自己写的ajax,有调用php文件的,也不好用,不知道是不是一个原因
难道想要在视图层打开视图,只能再写一个控制器,然后调用么?
|
|