要填充的问题定位框架 [英] Problem targeting frame to be populated

查看:68
本文介绍了要填充的问题定位框架的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,


我正在尝试组建一个模型演示系统,包括

a:

- - 工具栏行,

- 主题,子主题和工作区(内容)的三列

- 一个页脚行。


主题栏提供了三个链接。当我点击第一个

链接topic1a时,我希望其内容显示在子主题

列中。它会显示在主题列中。我怎么能这么好?b $ b更正这个?


提前感谢您的帮助,

Richard


Model Presenter.html

-------------------------------

<!DOCTYPE html PUBLIC" - // W3C // DTD HTML 4.01 Frameset // EN"

" http://www.w3.org/TR/html4 /frameset.dtd">

< html>

< head>

< title>网站开发< / title>

< / head>

< noframes>

< body>

您的浏览器无法处理帧!

< / body>

< / noframes>

< frameset rows =" 10%,80%,10% ">

< frame src =" toolbar.htm" name =" toolbar">

< frameset cols =" 10%,10%,80%">

< frame src =" topics.htm" name =" topics">

< frame src =" subtopics.htm" name =" subtopics">

< frame src =" workarea.htm" name =" workarea">

< / frameset>

< frame src =" footer.htm" name =" footer">

< / frameset>

< / html>


topics.htm

---------------

< html>

< body bgcolor ="# 8F8FBD">


< h3>主题< / h3>

< a href =" topics1.htm" show =" subtopics"> Topic1< / a>

< a href =" topics2.htm" show =" subtopics"> Topic2< / a>

< a href =" topics3.htm" show =" subtopics"> Topic3< / a>

< / body>

< / html>


Topics1.htm

------------------

< html>

< body>

< a href ="''Topics1A.html" target =" subtopics"> Topics1a< / a>< br>

< a href ="''Topics1B.html" target =" subtopics"> Topics1b< / a>< br>

< a href ="''Topics1C.html" target =" subtopics"> Topics1c< / a>

< / body>

< / html>

Hi All,

I''m trying to put together a model presentation system consisting of
a:
-- "toolbar" row,
-- three columns for topics, subtopics and a workarea (content)
-- a "footer" row.

The topics column presents three links. When I click on the first
link, topic1a, I expect its content to presented in the subtopics
column. It gets presented in the topics column instead. How can I
correct this?

Thanks in advance for any help,
Richard

Model Presenter.html
-------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Website Development</title>
</head>
<noframes>
<body>
Your browser does not handle frames!
</body>
</noframes>
<frameset rows="10%,80%,10%">
<frame src="toolbar.htm" name="toolbar">
<frameset cols="10%,10%,80%">
<frame src="topics.htm" name="topics">
<frame src="subtopics.htm" name="subtopics">
<frame src="workarea.htm" name="workarea">
</frameset>
<frame src="footer.htm" name="footer">
</frameset>
</html>

topics.htm
---------------
<html>
<body bgcolor="#8F8FBD">

<h3>topics</h3>
<a href="topics1.htm" show="subtopics">Topic1</a>
<a href="topics2.htm" show="subtopics">Topic2</a>
<a href="topics3.htm" show="subtopics">Topic3</a>
</body>
</html>

Topics1.htm
------------------
<html>
<body>
<a href="''Topics1A.html" target="subtopics">Topics1a</a><br>
<a href="''Topics1B.html" target="subtopics">Topics1b</a><br>
<a href="''Topics1C.html" target="subtopics">Topics1c</a>
</body>
</html>

推荐答案

凝视我的水晶球我观察到Richard Lionheart

< RL ****** @ USComputerGurus.com>写在新闻:1142393465.984624.129340

@ i40g2000cwc.googlegroups.com:
Gazing into my crystal ball I observed "Richard Lionheart"
<RL******@USComputerGurus.com> writing in news:1142393465.984624.129340
@i40g2000cwc.googlegroups.com:
大家好,

我正在尝试组合一个模型演示系统,包括
a:
- "工具栏"行,
- 主题,子主题和工作区(内容)的三列
- 页脚行。

主题栏提供了三个链接。当我点击第一个
链接topic1a时,我希望其内容显示在子主题
列中。它会显示在主题列中。我怎么能更正呢?

提前感谢您的帮助,
理查德

模型Presenter.html
---- ---------------------------
<!DOCTYPE html PUBLIC" - // W3C // DTD HTML 4.01 Frameset / / EN"
" http://www.w3.org/TR/html4/frameset.dtd"> < HTML> < head>
< title>网站开发< / title> < /头> <无框架> <身体GT;您的
浏览器无法处理帧! < /体>


来自Golly!这太可怕了,所以80年代。

< www.htmlhelp.com/reference/html40/frames/noframes.html>


< / noframes>
< frameset rows =" 10%,80%,10%">
< frame src =" toolbar.htm"名称= QUOT;工具栏"> < frameset cols =" 10%,10%,80%">
< frame src =" topics.htm" name =" topics">
< frame src =" subtopics.htm" name =" subtopics">
< frame src =" workarea.htm" name =" workarea">
< / frameset>
< frame src =" footer.htm"名称= QUOT;页脚"> < /框架> < / html>

topics.htm
---------------
< html>
< body bgcolor ="#8F8FBD">

< h3>主题< / h3>
< a href =" topics1.htm"秀= QUOT;副标题"> TOPIC1< / A>


这是'你的问题 - 框架集DTD没有属性SHOW,也没有任何其他的
。你正在寻找TARGET,你正确地在topics1.htm。

Topics1.htm
------------------
< a href ="''Topics1A.html" target =" subtopics"> Topics1a< / a>< br>
Hi All,

I''m trying to put together a model presentation system consisting of
a:
-- "toolbar" row,
-- three columns for topics, subtopics and a workarea (content)
-- a "footer" row.

The topics column presents three links. When I click on the first
link, topic1a, I expect its content to presented in the subtopics
column. It gets presented in the topics column instead. How can I
correct this?

Thanks in advance for any help,
Richard

Model Presenter.html
-------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd"> <html> <head>
<title>Website Development</title> </head> <noframes> <body> Your
browser does not handle frames! </body>
By Golly! That''s terrible, and so 80''s.
<www.htmlhelp.com/reference/html40/frames/noframes.html>

</noframes>
<frameset rows="10%,80%,10%">
<frame src="toolbar.htm" name="toolbar"> <frameset cols="10%,10%,80%">
<frame src="topics.htm" name="topics">
<frame src="subtopics.htm" name="subtopics">
<frame src="workarea.htm" name="workarea">
</frameset>
<frame src="footer.htm" name="footer"> </frameset> </html>

topics.htm
---------------
<html>
<body bgcolor="#8F8FBD">

<h3>topics</h3>
<a href="topics1.htm" show="subtopics">Topic1</a>
Here''s your problem - there is no attribute SHOW for the frameset DTD, nor
any other. You are looking for TARGET, which you correctly in topics1.htm.
Topics1.htm
------------------
<a href="''Topics1A.html" target="subtopics">Topics1a</a><br>




-

Adrienne Boswell
< a rel =nofollowhref =http://www.cavalcade-of-coding.infotarget =_ blank> http://www.cavalcade-of-coding.info

请回复小组以便其他人分享



--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share


2006年3月14日,Richard Lionheart写道:
On 14 Mar 2006, Richard Lionheart wrote:
< ; noframes>
您的浏览器无法处理帧!
< / noframes>
<noframes>
Your browser does not handle frames!
</noframes>




这就像
$ b一样愚蠢$ b alt ="您的浏览器无法处理图像!"


-

所有免费的男士,无论他们居住在哪里,都是丹麦公民。

因此,作为一个自由人,我为Jeg er dansker!这个词感到自豪。



This is as stupid as
alt="Your browser does not handle images!"

--
All free men, wherever they may live, are citizens of Denmark.
And therefore, as a free man, I take pride in the words "Jeg er dansker!"


2006年3月14日星期三,Richard Lionheart写道:
On Wed, 14 Mar 2006, Richard Lionheart wrote:
< noframes>
< body>
您的浏览器r不处理框架!
< / body>
< / noframes>
<noframes>
<body>
Your browser does not handle frames!
</body>
</noframes>




我认为你的意思是:


现在将浏览器降级为无法禁用帧的浏览器



I think you meant:

"Downgrade your browser now, to one that cannot disable frames"


这篇关于要填充的问题定位框架的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆