关于HTML功能

时间:2011-02-14 06:37:50

标签: html

嘿,这里有一个来自Gate考试的问题,我发现有点令人困惑:

HTML (Hyper Text Markup Language) has language elements which permit
certain actions other than describing the structure of the web document. Which
one of the following actions is NOT supported by pure HTML (without any server
or client side scripting) pages?
(A) Embed web objects from different sites into the same page
(B) Refresh the page automatically after a specified interval
(C) Automatically redirect to another page upon download
(D) Display the client time as part of the page

我认为它是C或D.但不确定。

提前致谢。

2 个答案:

答案 0 :(得分:4)

A)这就是<object>元素的用途。

B)古老的<meta http-equiv="refresh">标签。

C)如果“下载”意味着下载完成后,显然是不可能的。此外,没有JavaScript,在任何地方导航的唯一方法是表单提交按钮和链接,这两种方法都不能用于导航到两个目标。但是,您可以链接到使用<meta http-equiv="refresh" content="0;url=download.binary" />(或0x0 - <iframe>和下载源)等结构的页面来实现此目的。

D)没有JavaScript显然是不可能的 - 你根本不知道用户发送回复的时间。

答案 1 :(得分:0)

我们可以使用JavaScript显示一个时钟,该时钟将显示客户端计算机的本地时间。请注意,显示的时间是从用户计算机而非服务器获取的。

因此,选项D对此问题无效。 (答案是D。):):)