HTML超連結

weixin_33816946發表於2016-09-06

使用超連結,可以讓網頁連線到另外一個頁面

<html>
<head>
<title>第一個網頁</title>
</head>
<body>
************超連結案例*************</br>
<a href="hello.html">老鼠愛大米</a></br>
<a href="http://www.w3school.com.cn">W3School</a>
</body>
</html>

 target的屬性:target替換原頁面

<a href=url target=_self>本視窗

<a href=url target=_blank>新視窗

<a href=url target=_parent>父視窗

<a href=url target=_top>整個瀏覽器視窗

<html>
<head>
<title>第一個網頁</title>
</head>
<body>
************超連結案例*************</br>
<!--_blank開啟新頁面  _self替換當前頁面—-->
<a href="hello.html" target="_blank">老鼠愛大米</a></br>
<a href="hello.html" target="_self">12345</a></br>
<a href="http://www.w3school.com.cn" target="_blank">W3School</a>
<a href="http://202.194.239.122:8080/my/hello.html" target="_self">hello</a></br>
<!--需要事先配置好outlook-->
<a herf="mailto:hanshunping@tsinghua.org.cn" target="_blank">給管理員寫信</a>
</body>
</html>

 

相關文章