首页 > 代码库 > html_a
html_a
html的a标签
描述:是一个html页面的标签
属性:
href 超链接,有三种值,一是绝对URL(www.baidu,com),
二是相对URL(index.html),
三是锚URL(指向页面的锚href=http://www.mamicode.com/#top)
name 描述锚的名称,可以用在href中
id 描述锚的id,可以用在href中
target 规定在何处打开链接文档。值为_blank,_parent,_self, _top, framename
_blank : 新窗口
_parent : 父窗口或者包含超链接的框架集,如果这个引用在窗口或者顶级框架中,与_self等效
_self : 默认, 本窗口, 相同的框架
_top : 包含超链接的窗口或者框架
framename : 在框架中打开窗口,
首先打开target="view_frame"指定的框架frame,如果没有存在,那么打开一个新的窗口,
这个新的窗口的名称为view_frame,然后将新的文档载入到这个窗口中。
如果存在,那么就将新的文档载入到这个框架view_frame中.
...
作用: 1.可以作为导航
2.可以作为链接
注意: 当使用标签a时,页面的href没有设置值,那么页面会点击a标签之后会自动刷新,
刷新的功能是本页面的URL
页面存在的frame形式为
<html> <head></head> <frameset cols="200,*"> <frame src="http://www.mamicode.com/toc.html" /> <frame src="http://www.mamicode.com/pref.html" name="view_frame" /> </frameset> </html> toc.html <html> <body> <h3>Table of Contents</h3> <ul> <li><a href="http://www.mamicode.com/pref.html" target="view_frame">Preface</a></li> <li><a href="http://www.mamicode.com/chap1.html" target="view_frame">Chapter 1</a></li> <li><a href="http://www.mamicode.com/chap2.html" target="view_frame">Chapter 2</a></li> <li><a href="http://www.mamicode.com/chap3.html" target="view_frame">Chapter 3</a></li> </ul> </body> </html>
html_a