LINK链接处理代码


我想创建链接,以便在新窗口中打开页面?
我该怎样链接到网站(例如hioxindia.com)?

解释

在新窗口中打开链接:


很多时候我想在新窗口中打开链接。
这是非常简单的。
在 "<a>"标记内部使用属性"target=_blank"。
例如代码:
<a href="test1.html" target="_blank"> Click to test1.html </a>
结论:
Click to test1.html
单击链接来测试。它将在新窗口中打开页面。


链接到外部的网站:


这个标记与其他的一样,只用在使用时我们要用"http://"。
因此如果要链接到withfriendship.com,我们应使用"http://www.withfriendship.com"。
例如代码:
<a href="http://www.withfriendship.com"> With FriendShip </a>
结论:
With FriendShip
这将把你带入到网站。