<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title> ABC </title>
</head>
This is index.html.erb
<frameset rows="170,*" frameborder="0" border="0" framespacing="0">
<frame name="topNav" src="top_nav.html" />
</frameset>
</html>
此视图的布局为false。所以,html,head仅在此视图中声明。问题是为什么这段代码不能用于erb文件?
我只看到&#34;这是index.html.erb&#34;页面上的消息。
答案 0 :(得分:0)
我希望每个人都知道
framesets
不应该在身体之下/之后。
以上代码的问题是行:
This is index.html.erb
浏览器正在转换此主体标签。从开始出现的代码和框架集中删除了这一行。