open multiple webpages in same tab

前端 未结 5 1503
梦如初夏
梦如初夏 2021-01-07 09:35

Have multiple hyperlinks in a report, everytime a click on a hyperlink the webpage opens in a new tab, Is it possible to open the hyperlinks in only one tab instead of multi

5条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-07 10:15

    When you specify the target of a window.open() call or an tag, you can specify _blank, _parent, _self or _top, as special tab/window names. Alternatively you can specify a new tab/window name, when you specify this tab/window another time, it will refer to the original one that you opened.

提交回复
热议问题