当前位置: 首页 > 网络学院 > 网页制作基础教程 > WEB设计综合 > 框架中的“target”

WEB设计综合
多姿多彩的网页链接下划线
显示个性化的鼠标指针
什么是web标准
Meta — 容易被忽视的HTML元素
网页制作小秘诀
CSS2盒模型的3D示意图
为什么要抛弃HTML
DIV 和 TABLE 应该如何配合使用
CSS样式表定义链接样式
谈谈CSS样式表的命名规范
CSS常见技巧及问题处理
完全CSS鼠标悬停TIP效果
CSS布局定位系列:相对定位
根据分辨率不同调用不同的css文件
CSS制作的阴影链接文字
用CSS制作的美国国旗
导航上用CSS标志当前页效果
CSS的常用技巧放送
CSS顶级技巧
常用CSS缩写语法总结

WEB设计综合 中的 框架中的“target”


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-01   浏览: 2108 ::
收藏到网摘: n/a

target=_self

This will load the page in the same frame as the caller.
表示在目前窗口或框架里打开链接(默认的)

target=_parent

This causes the page to load in the same frameset as 
the caller taking the place of any sub frames.
表示在父窗口或框架里打开链接

target=_top

This loads the resulting page into the full body of 
the current window eliminating any frames.
表示在顶层框架里打开新链接

target=_blank

This opens up a new window and loads the page in to it.
表示始终在不同的新窗口打开链接

target=_new

Opens a new window and the page loads in it, all other links using same target open in this window.

表示始终在同一个新窗口打开链接

Whats this all about?
这些都是些什么东西呢?

By assigning a name to a frame via the name attribute, authors can refer to it as the "target" of links defined by other elements.

通过name属性为一个框架命名,作者就可以查阅由其它元素所定义的链接“target”。

e.g. If my frame is called "80four", then to get a link to open in that frame the code would read:

举个例子来说,如果我的框架叫做“80four”,那么,在这个框架中打开链接的具体代码如下:

<a href="pagename.html" target="80four">link name</a>

Then pagename.html would open in the frame "80four".

此时,“pagename.html”将在“80four”框架中打开。

Example:
案例:

Links
链接

Template Monster
Template Tunning
Web Design Library

评论 (0) All

登陆 | 还没注册?