国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

How to open hyperlinks

The opening methods are divided into opening on this page and opening in a new browser window. By default, the way a hyperlink opens a new page is self-overwriting (that is, opening on this page). According to the different needs of the browser, readers can specify other ways of opening new windows for hyperlinks. The hyperlink tag provides the target attribute for setting, and the values ??are _self (self-overwriting, default) and _blank (create a new window to open a new page). Let's start by distinguishing the difference between these two attributes (since we have already written about the default situation, here we only add the _blank attribute)

Based on the previous ones, we will add in < a> Add the target attribute to the tag: target="_blank"

QQ截圖20161010175615.png

By comparing with the first picture, we can see that after the _blank attribute is added, the webpage linked to is in Opened in a new window, and the default _self attribute is opened in an overlay form on this page (first picture)


Continuing Learning
||
<html> <body> <a href="http://m.miracleart.cn/" target="_blank">Visit php!</a> <p>如果把鏈接的 target 屬性設(shè)置為 "_blank",該鏈接會(huì)在新窗口中打開(kāi)。</p> </body> </html>
submitReset Code