码迷,mamicode.com
首页 > Web开发 > 详细

html_a

时间:2017-08-12 00:38:32      阅读:341      评论:0      收藏:0      [点我收藏+]

标签:url   www.   ram   set   nts   ble   src   blog   class   

html的a标签
描述:是一个html页面的标签
属性:
href 超链接,有三种值,一是绝对URL(www.baidu,com),
二是相对URL(index.html),
三是锚URL(指向页面的锚href=#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="toc.html" />
	<frame src="pref.html" name="view_frame" />
</frameset>
</html>


toc.html
<html>
<body>
	<h3>Table of Contents</h3>
	<ul>
	  <li><a href="pref.html" target="view_frame">Preface</a></li>
	  <li><a href="chap1.html" target="view_frame">Chapter 1</a></li>
	  <li><a href="chap2.html" target="view_frame">Chapter 2</a></li>
	  <li><a href="chap3.html" target="view_frame">Chapter 3</a></li>
	</ul>
</body>
</html>

  

 

html_a

标签:url   www.   ram   set   nts   ble   src   blog   class   

原文地址:http://www.cnblogs.com/alisonGavin/p/7348455.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!