What is the difference between target=“_blank” and target=“blank”?

后端 未结 2 965
迷失自我
迷失自我 2020-12-14 13:45

Since I approached the web programming, to open a link in a new window I always used

target=\"blank\"

but most of the time, here and in th

相关标签:
2条回答
  • 2020-12-14 14:32

    blank targets an existing frame or window called "blank". A new window is created only if "blank" doesn't already exist.

    _blank is a reserved name which targets a new, unnamed window.

    0 讨论(0)
  • 2020-12-14 14:40

    In short, use target="_blank" it always open a new window but use target="blank" it will open a new window at the first time and this window will be reused after the first.

    0 讨论(0)
提交回复
热议问题